highlightjs-opl 1.0.2 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/build.yaml +63 -0
- package/.gitmodules +3 -0
- package/.local/python/bin/Activate.ps1 +247 -0
- package/.local/python/bin/activate +70 -0
- package/.local/python/bin/activate.csh +27 -0
- package/.local/python/bin/activate.fish +69 -0
- package/.local/python/bin/pip +8 -0
- package/.local/python/bin/pip3 +8 -0
- package/.local/python/bin/pip3.12 +8 -0
- package/.local/python/bin/pipenv +8 -0
- package/.local/python/bin/pipenv-resolver +8 -0
- package/.local/python/bin/virtualenv +8 -0
- package/.local/python/bin/wheel +8 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__init__.py +239 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/override.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/_distutils_hack/override.py +1 -0
- package/.local/python/lib/python3.12/site-packages/benchmarks/__pycache__/benchmark.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/benchmarks/benchmark.py +408 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi/cacert.pem +4494 -0
- package/.local/python/lib/python3.12/site-packages/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/METADATA +78 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/RECORD +15 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/licenses/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/database.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/locators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/manifest.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/distlib/database.py +1329 -0
- package/.local/python/lib/python3.12/site-packages/distlib/index.py +508 -0
- package/.local/python/lib/python3.12/site-packages/distlib/locators.py +1295 -0
- package/.local/python/lib/python3.12/site-packages/distlib/manifest.py +384 -0
- package/.local/python/lib/python3.12/site-packages/distlib/markers.py +164 -0
- package/.local/python/lib/python3.12/site-packages/distlib/metadata.py +1031 -0
- package/.local/python/lib/python3.12/site-packages/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/distlib/version.py +750 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/distlib/wheel.py +1105 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/METADATA +118 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/RECORD +38 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/WHEEL +6 -0
- package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/distutils-precedence.pth +1 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__init__.py +77 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_error.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_read_write.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_soft.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/asyncio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_api.py +578 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_error.py +30 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_read_write.py +363 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_soft.py +127 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_unix.py +109 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_util.py +53 -0
- package/.local/python/lib/python3.12/site-packages/filelock/_windows.py +100 -0
- package/.local/python/lib/python3.12/site-packages/filelock/asyncio.py +376 -0
- package/.local/python/lib/python3.12/site-packages/filelock/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/filelock/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/METADATA +38 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/RECORD +26 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/METADATA +107 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/RECORD +42 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +810 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +398 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1125 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +440 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +568 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/download.py +341 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/session.py +532 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +745 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +747 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +568 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +828 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +255 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +116 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
- package/.local/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/README.rst +180 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +696 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1039 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1086 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +777 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +19 -0
- package/.local/python/lib/python3.12/site-packages/pip/py.typed +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/RECORD +878 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/cmdparse.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environments.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/installers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/pep508checker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/project.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/shells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/__version__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/options.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/command.py +1208 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cli/options.py +635 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/cmdparse.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/environment.py +832 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/environments.py +449 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/exceptions.py +411 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/help.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/installers.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/README.md +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/patched.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__main__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pip-runner__.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/build_env.py +417 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cache.py +291 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/autocompletion.py +184 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/base_command.py +244 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/cmdoptions.py +1110 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/command_context.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/index_command.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main_parser.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/parser.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/progress_bars.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/req_command.py +371 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/spinners.py +235 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/status_codes.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__init__.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/cache.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/check.py +68 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/completion.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/configuration.py +288 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/debug.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/download.py +144 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/freeze.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/hash.py +60 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/help.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/index.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/inspect.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/install.py +803 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/list.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/lock.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/search.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/show.py +231 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/uninstall.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/wheel.py +178 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/configuration.py +396 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/base.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/installed.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/sdist.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/wheel.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/exceptions.py +898 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/collector.py +494 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/package_finder.py +1090 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/sources.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__init__.py +441 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_distutils.py +173 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_sysconfig.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/base.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/main.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__init__.py +169 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/_json.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/base.py +685 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/pkg_resources.py +298 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/candidate.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/direct_url.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/format_control.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/index.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/installation_report.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/link.py +613 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/pylock.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/scheme.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/search_scope.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/selection_prefs.py +53 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/target_python.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/wheel.py +80 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/auth.py +564 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/cache.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/download.py +342 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/lazy_wheel.py +215 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/session.py +528 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/utils.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/xmlrpc.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/build_tracker.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata_editable.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel_editable.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/check.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/freeze.py +259 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/wheel.py +746 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/prepare.py +748 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/pyproject.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__init__.py +103 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/constructors.py +566 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_dependency_group.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_file.py +619 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_install.py +828 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_set.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_uninstall.py +639 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/base.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/candidates.py +595 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/factory.py +845 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/requirements.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/self_outdated_check.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_jaraco_text.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_log.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/appdirs.py +53 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compat.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compatibility_tags.py +201 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/datetime.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/deprecation.py +126 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/egg_link.py +81 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/entrypoints.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filesystem.py +164 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filetypes.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/glibc.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/hashes.py +150 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/logging.py +364 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/misc.py +765 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/packaging.py +44 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/retry.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/subprocess.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/temp_dir.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/unpacking.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/urls.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/virtualenv.py +105 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/wheel.py +133 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/bazaar.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/git.py +571 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/mercurial.py +186 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/subversion.py +335 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/versioncontrol.py +693 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/wheel_builder.py +261 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__init__.py +117 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__init__.py +29 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/adapter.py +168 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/cache.py +75 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/controller.py +511 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/filewrapper.py +119 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__main__.py +12 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/cacert.pem +4800 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/core.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__init__.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/compat.py +1137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/resources.py +358 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/scripts.py +447 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/util.py +1984 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/LICENSE +202 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__init__.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__main__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/distro.py +1403 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/LICENSE.md +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__init__.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/codec.py +122 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/compat.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/core.py +437 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/idnadata.py +4243 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/intranges.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/package_data.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/uts46data.py +8681 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/COPYING +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__init__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/exceptions.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/ext.py +170 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/fallback.py +929 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_elffile.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_parser.py +353 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_structures.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_tokenizer.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__init__.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/_spdx.py +759 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/markers.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/metadata.py +862 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/requirements.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/specifiers.py +1019 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/tags.py +656 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/utils.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/version.py +582 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/windows.py +272 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__init__.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__main__.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/console.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filter.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatter.py +129 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexer.py +963 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/modeline.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/plugin.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/regexopt.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/scanner.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/sphinxext.py +247 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/style.py +203 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/token.py +214 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/unistring.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/util.py +324 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/LICENSE +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__init__.py +179 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__version__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/_internal_utils.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/adapters.py +696 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/api.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/auth.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/certs.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/compat.py +90 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/cookies.py +561 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/exceptions.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/help.py +127 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/hooks.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/models.py +1039 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/packages.py +25 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/sessions.py +831 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/status_codes.py +128 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/structures.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/utils.py +1086 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/providers.py +196 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/reporters.py +55 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/structs.py +209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__init__.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__main__.py +245 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_cell_widths.py +454 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_export_format.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_extension.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_fileno.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_inspect.py +268 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_log_render.py +94 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_loop.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_null_file.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_palettes.py +309 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_pick.py +17 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_ratio.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_spinners.py +482 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_stack.py +16 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_timer.py +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_win32_console.py +661 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_wrap.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/abc.py +33 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/align.py +306 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/ansi.py +241 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/bar.py +93 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/box.py +474 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/cells.py +174 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color.py +621 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color_triplet.py +38 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/columns.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/console.py +2680 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/constrain.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/containers.py +167 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/control.py +219 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/default_styles.py +193 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/diagnose.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/emoji.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/errors.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/file_proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/filesize.py +88 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/highlighter.py +232 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/json.py +139 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/jupyter.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/layout.py +442 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live_render.py +106 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/logging.py +297 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/markup.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/measure.py +151 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/padding.py +141 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pager.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/palette.py +100 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/panel.py +317 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pretty.py +1016 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress.py +1715 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress_bar.py +223 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/prompt.py +400 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/protocol.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/region.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/repr.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/rule.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/scope.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/screen.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/segment.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/spinner.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/status.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/style.py +792 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/styled.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/syntax.py +985 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/table.py +1006 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/terminal_theme.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/text.py +1361 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/theme.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/themes.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/traceback.py +899 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/tree.py +257 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_parser.py +777 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_re.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/_writer.py +229 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__init__.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_api.py +343 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_macos.py +573 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_openssl.py +70 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_windows.py +569 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__init__.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_collections.py +355 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_version.py +2 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connection.py +572 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/exceptions.py +323 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/fields.py +274 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/filepost.py +98 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/request.py +191 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/response.py +879 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/connection.py +149 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/queue.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/request.py +137 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/response.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/retry.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/url.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/wait.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/vendor.txt +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/py.typed +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/pep508checker.py +39 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/pipenv.1 +567 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/project.py +1687 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/resolver.py +512 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/audit.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clear.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/graph.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/outdated.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/scan.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/shell.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/sync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/uninstall.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/update.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/audit.py +242 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/check.py +444 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/clean.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/clear.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/graph.py +111 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/install.py +728 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/lock.py +108 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/outdated.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/requirements.py +134 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/scan.py +508 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/shell.py +192 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/sync.py +64 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/uninstall.py +218 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/routines/update.py +676 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/shells.py +342 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/constants.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/dependencies.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/display.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/fileutils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/funktools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/indexes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/internet.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/locking.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pip.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pipfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/processes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/project.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirementslib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/resolver.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/shell.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/toml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/constants.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/dependencies.py +1413 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/display.py +54 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/environment.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/exceptions.py +97 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/fileutils.py +248 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/funktools.py +452 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/indexes.py +132 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/internet.py +146 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/locking.py +543 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/markers.py +663 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pip.py +147 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pipfile.py +414 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/processes.py +77 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/project.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/pylock.py +752 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirements.py +389 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirementslib.py +732 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/resolver.py +1172 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/shell.py +558 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/toml.py +140 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/utils/virtualenv.py +531 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/Makefile +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/README.md +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/LICENSE.txt +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__init__.py +123 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_termui_impl.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_textwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_winconsole.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/decorators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/formatting.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/globals.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/shell_completion.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/termui.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/testing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_compat.py +622 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_termui_impl.py +852 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_textwrap.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_utils.py +36 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_winconsole.py +296 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/core.py +3415 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/decorators.py +551 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/exceptions.py +308 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/formatting.py +301 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/globals.py +67 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/parser.py +532 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/shell_completion.py +667 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/termui.py +883 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/testing.py +577 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/types.py +1209 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/utils.py +627 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__init__.py +66 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__init__.py +7 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansi.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/initialise.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/win32.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/winterm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansi.py +102 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansitowin32.py +277 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/initialise.py +121 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansi_test.py +76 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansitowin32_test.py +294 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/initialise_test.py +189 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/isatty_test.py +57 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/utils.py +49 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/winterm_test.py +131 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/win32.py +180 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/winterm.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__init__.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/ipython.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/variables.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/ipython.py +50 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/main.py +435 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/parser.py +182 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/variables.py +86 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/version.py +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__init__.py +1175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_adapters.py +135 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_collections.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_compat.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_functools.py +104 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_itertools.py +171 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_meta.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_text.py +99 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_typing.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py311.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py39.py +42 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/diagnose.py +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_elffile.py +109 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_parser.py +353 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_structures.py +61 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_tokenizer.py +195 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__init__.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/_spdx.py +759 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/markers.py +362 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/metadata.py +862 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/requirements.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/specifiers.py +1019 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/tags.py +656 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/utils.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/version.py +582 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/ANSI.py +351 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/FSM.py +334 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__init__.py +91 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/ANSI.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/FSM.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_pre_await.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_w_await.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/expect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/fdpexpect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/popen_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pty_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pxssh.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/replwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/run.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/screen.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/socket_pexpect.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/spawnbase.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async.py +28 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_pre_await.py +111 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_w_await.py +118 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/exceptions.py +35 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/expect.py +371 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/fdpexpect.py +152 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/popen_spawn.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pty_spawn.py +860 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pxssh.py +540 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/replwrap.py +136 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/run.py +157 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/screen.py +431 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/socket_pexpect.py +145 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/spawnbase.py +536 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/utils.py +187 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__main__.py +92 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_cli.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_detect_env.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_validate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_warning.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_cli.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_detect_env.py +101 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_discovery.py +154 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_freeze.py +89 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__init__.py +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/dag.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/package.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/dag.py +365 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/package.py +251 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__init__.py +41 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/freeze.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/graphviz.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json_tree.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/mermaid.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/freeze.py +43 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/graphviz.py +107 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json.py +32 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json_tree.py +60 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/mermaid.py +113 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/text.py +153 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_validate.py +119 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_warning.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__init__.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/lockfiles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/pipfiles.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/lockfiles.py +177 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__init__.py +26 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/hashes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sources.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/base.py +130 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/hashes.py +69 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/packages.py +56 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/scripts.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sections.py +138 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sources.py +45 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/pipfiles.py +168 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/LICENSE +16 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__init__.py +4 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/_fork_pty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/ptyprocess.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/_fork_pty.py +78 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/ptyprocess.py +842 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/util.py +71 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/python_dotenv.LICENSE +27 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/LICENSE.txt +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__init__.py +9 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/main.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/pythonfinder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/environment.py +115 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/exceptions.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__init__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/asdf_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/base_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/path_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/py_launcher_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/pyenv_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/system_finder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/windows_registry.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/asdf_finder.py +72 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/base_finder.py +188 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/path_finder.py +226 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/py_launcher_finder.py +226 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/pyenv_finder.py +73 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/system_finder.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/windows_registry.py +499 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/main.py +15 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__init__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/python_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/python_info.py +175 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/pythonfinder.py +227 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__init__.py +35 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/path_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/version_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/path_utils.py +287 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/version_utils.py +233 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/LICENSE +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__init__.py +23 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/nt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/_core.py +11 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/nt.py +163 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__init__.py +112 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/proc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/ps.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/_core.py +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/proc.py +83 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/ps.py +51 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__init__.py +59 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/container.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/items.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/source.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_char.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_document.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_compat.py +22 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_types.py +82 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/api.py +310 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/container.py +894 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/exceptions.py +234 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/items.py +1960 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/parser.py +1141 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/source.py +180 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_char.py +52 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_document.py +7 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_file.py +58 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/vendor.txt +14 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__init__.py +456 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/_functools.py +20 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/overlay.py +37 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py310.py +13 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py313.py +34 -0
- package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/glob.py +116 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/METADATA +434 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/RECORD +1318 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/entry_points.txt +3 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/NOTICES +5 -0
- package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/top_level.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__init__.py +857 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__main__.py +61 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/_xdg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/_xdg.py +143 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/android.py +273 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/api.py +394 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/macos.py +187 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/unix.py +293 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs/windows.py +369 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/METADATA +100 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/RECORD +24 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__init__.py +26 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cache.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cached_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_spec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_specifier.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_cache.py +185 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_cached_py_info.py +259 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_compat.py +29 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_discovery.py +335 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_py_info.py +787 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_py_spec.py +262 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_specifier.py +311 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_pep514.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_propose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_pep514.py +222 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_propose.py +53 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/METADATA +71 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/RECORD +28 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__init__.py +256 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_core_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_entry_points.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_imp.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_importlib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_normalization.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_path.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_reqs.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_shutil.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_static.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/installer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/launch.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/unicode_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/warnings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/windows_support.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_core_metadata.py +337 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_discovery.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__init__.py +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_log.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_modified.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +16 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py +284 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cmd.py +535 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/_framework_compat.py +54 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py +167 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_dumb.py +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_rpm.py +597 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build.py +156 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_clib.py +199 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py +811 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_py.py +404 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_scripts.py +150 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/check.py +152 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/clean.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/config.py +348 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install.py +805 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_data.py +94 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_egg_info.py +90 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py +46 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py +236 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py +521 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/numpy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/numpy.py +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py +66 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/cygwin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/zos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/base.py +1386 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/cygwin.py +340 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/errors.py +24 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/msvc.py +614 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_cygwin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_mingw.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_msvc.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_base.py +83 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_cygwin.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_mingw.py +48 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_msvc.py +136 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +413 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/unix.py +422 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/zos.py +230 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/core.py +289 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py +31 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/debug.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dep_util.py +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py +232 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dist.py +1384 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/errors.py +108 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/extension.py +258 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py +471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/file_util.py +228 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/filelist.py +431 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/log.py +56 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/spawn.py +130 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +598 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py39.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +134 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +342 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +47 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +78 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +127 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +49 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +134 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +628 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +196 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +96 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +194 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +45 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +107 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +87 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +130 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +139 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +552 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +117 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +336 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +245 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +74 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +110 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +52 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +126 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +470 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +319 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +127 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +243 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +80 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/text_file.py +286 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/util.py +506 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/version.py +348 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_entry_points.py +94 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_imp.py +87 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_importlib.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_itertools.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_normalization.py +180 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_path.py +93 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_reqs.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_scripts.py +361 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_shutil.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_static.py +188 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/.lock +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +27 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +142 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +70 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +333 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE +166 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA +420 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +2937 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +24 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA +46 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +1191 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +136 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +56 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +135 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +171 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +71 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_typing.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/METADATA +133 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/RECORD +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/licenses/LICENSE +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__init__.py +367 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +722 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +123 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py +647 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +25 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +32 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/METADATA +96 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/RECORD +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/METADATA +82 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/RECORD +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/RECORD +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.pyi +2 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +5303 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.pyi +949 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py +1471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +205 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/METADATA +283 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/RECORD +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/licenses/LICENSE +19 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py +108 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py +262 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py +85 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py +365 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py +193 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__init__.py +147 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py +799 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py +388 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +978 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/pylock.py +635 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py +86 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py +1068 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py +651 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py +158 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +792 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/METADATA +107 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/RECORD +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +631 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +55 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +249 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +299 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +146 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +272 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +272 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/METADATA +350 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/RECORD +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py +8 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py +782 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py +119 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/py.typed +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/METADATA +270 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/RECORD +11 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/licenses/LICENSE +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +25 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_bdist_wheel.py +616 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__init__.py +153 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/convert.py +337 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/pack.py +84 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/tags.py +140 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/unpack.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_metadata.py +184 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +486 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +241 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/RECORD +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/entry_points.txt +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +456 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/_functools.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/overlay.py +37 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py313.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py +116 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/METADATA +106 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/RECORD +14 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/licenses/LICENSE +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/top_level.txt +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/archive_util.py +219 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/build_meta.py +556 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli-arm64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/cli.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__init__.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/_requirestxt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/alias.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/develop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/dist_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/easy_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_lib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/rotate.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/saveopts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/setopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/test.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/_requirestxt.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/alias.py +77 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_egg.py +471 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +42 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py +603 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build.py +135 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_clib.py +103 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_ext.py +470 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/build_py.py +403 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/develop.py +58 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/dist_info.py +103 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/easy_install.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/editable_wheel.py +914 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/egg_info.py +716 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_egg_info.py +57 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_lib.py +137 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/install_scripts.py +66 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/launcher manifest.xml +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/rotate.py +64 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/saveopts.py +21 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/sdist.py +218 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/setopt.py +139 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/command/test.py +47 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py312.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py310.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py311.py +27 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py312.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/compat/py39.py +9 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/NOTICE +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__init__.py +43 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/expand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/setupcfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py +526 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/NOTICE +438 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +336 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +82 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1412 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py +402 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/distutils.schema.json +26 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/expand.py +452 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py +468 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/setupcfg.py +782 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/config/setuptools.schema.json +433 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/depends.py +185 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/discovery.py +614 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/dist.py +1124 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/errors.py +67 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/extension.py +179 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/glob.py +185 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-32.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui-arm64.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/gui.exe +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/installer.py +155 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/launch.py +36 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/logging.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/modified.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/monkey.py +126 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/msvc.py +1557 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/namespaces.py +101 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/script (dev).tmpl +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/script.tmpl +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__init__.py +13 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_scripts.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_shutil_wrapper.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +59 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +18 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/setupcfg_examples.txt +22 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +774 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +247 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +398 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +111 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +987 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/contexts.py +131 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/environment.py +95 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/fixtures.py +406 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/external.html +3 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pbr.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +80 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +223 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/namespaces.py +90 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +36 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +28 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +708 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build.py +33 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +84 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +293 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +959 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +480 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +647 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +550 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_depends.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_develop.py +113 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist.py +280 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +147 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +198 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +1261 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +1306 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_extern.py +15 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +218 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +73 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_glob.py +45 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +89 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_logging.py +76 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +622 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +79 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_scripts.py +12 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +980 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +40 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +290 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_shutil_wrapper.py +23 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +10 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +113 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +106 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +690 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +258 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/text.py +4 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/tests/textwrap.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/unicode_utils.py +102 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/version.py +6 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/warnings.py +110 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/wheel.py +262 -0
- package/.local/python/lib/python3.12/site-packages/setuptools/windows_support.py +30 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/METADATA +141 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/RECORD +759 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/WHEEL +5 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/entry_points.txt +51 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/licenses/LICENSE +17 -0
- package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/top_level.txt +2 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__init__.py +10 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__main__.py +92 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/report.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/version.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__init__.py +19 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/activator.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/via_template.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/activator.py +61 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__init__.py +32 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/activate.sh +132 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__init__.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/activate.bat +59 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/deactivate.bat +30 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/pydoc.bat +1 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__init__.py +24 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/activate.csh +74 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__init__.py +29 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/activate.fish +118 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__init__.py +51 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/activate.nu +89 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__init__.py +30 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/activate.ps1 +213 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__init__.py +39 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/activate_this.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/activate_this.py +45 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/activation/via_template.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__init__.py +81 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/na.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/read_only.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_disk_folder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_tempdir.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/base.py +167 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/na.py +78 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/read_only.py +47 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_disk_folder.py +181 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_tempdir.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/env_var.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/ini.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/parser.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/parser.py +158 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/convert.py +105 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/env_var.py +38 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/config/ini.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/creator.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/debug.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/describe.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/pyenv_cfg.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/creator.py +289 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/debug.py +103 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/describe.py +116 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/pyenv_cfg.py +79 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/_virtualenv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/api.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/store.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/venv.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/_virtualenv.py +128 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/api.py +142 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/builtin_way.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/ref.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/via_global_self_do.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/builtin_way.py +25 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/common.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/cpython3.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/mac_os.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/common.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/cpython3.py +220 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/mac_os.py +290 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__init__.py +99 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/common.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/pypy3.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/common.py +61 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/pypy3.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/ref.py +181 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__init__.py +53 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/via_global_self_do.py +135 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/store.py +32 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/venv.py +112 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/builtin.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/cached_py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/discover.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_info.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_spec.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/builtin.py +87 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/cached_py_info.py +10 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/discover.py +43 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_info.py +9 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_spec.py +9 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/info.py +72 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/py.typed +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/report.py +50 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__init__.py +197 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/session.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/activators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/creators.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/discovery.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/seeders.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/activators.py +74 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/base.py +77 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/creators.py +98 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/discovery.py +60 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/seeders.py +51 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/run/session.py +121 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/seeder.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/base_embed.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/pip_invoke.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/base_embed.py +150 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/pip_invoke.py +83 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/via_app_data.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/base.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/copy.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/symlink.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/base.py +214 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/copy.py +44 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/symlink.py +62 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/via_app_data.py +160 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/seeder.py +53 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__init__.py +11 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/acquire.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/bundle.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/periodic_update.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/util.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/acquire.py +150 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/bundle.py +65 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__init__.py +60 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-25.0.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-26.0.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-75.3.4-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-82.0.0-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.45.1-py3-none-any.whl +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/periodic_update.py +458 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/util.py +125 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__init__.py +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/error.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/lock.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/zipapp.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/error.py +14 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/lock.py +188 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__init__.py +16 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_permission.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_sync.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_win.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_permission.py +34 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_sync.py +90 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_win.py +23 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__init__.py +48 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/util/zipapp.py +47 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv/version.py +34 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/METADATA +65 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/RECORD +203 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/entry_points.txt +31 -0
- package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/licenses/LICENSE +20 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__init__.py +3 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__main__.py +25 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_bdist_wheel.py +616 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__init__.py +153 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/convert.py +337 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/pack.py +84 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/tags.py +140 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_commands/unpack.py +30 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_metadata.py +184 -0
- package/.local/python/lib/python3.12/site-packages/wheel/_setuptools_logging.py +26 -0
- package/.local/python/lib/python3.12/site-packages/wheel/bdist_wheel.py +26 -0
- package/.local/python/lib/python3.12/site-packages/wheel/macosx_libfile.py +486 -0
- package/.local/python/lib/python3.12/site-packages/wheel/metadata.py +17 -0
- package/.local/python/lib/python3.12/site-packages/wheel/wheelfile.py +241 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/INSTALLER +1 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/METADATA +69 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/RECORD +36 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/REQUESTED +0 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/WHEEL +4 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/entry_points.txt +6 -0
- package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
- package/.local/python/pyvenv.cfg +5 -0
- package/.tool-versions +2 -0
- package/README.md +5 -0
- package/package.json +1 -1
- package/scripts/changes/.github/workflows/test.yaml +58 -0
- package/scripts/changes/Pipfile +14 -0
- package/scripts/changes/README.md +45 -0
- package/scripts/changes/changes +27 -0
- package/scripts/changes/changes.py +890 -0
- package/scripts/changes/cli.py +80 -0
- package/scripts/changes/examples/gh-release.sh +38 -0
- package/scripts/changes/scripts/release.sh +28 -0
- package/scripts/changes/scripts/test.sh +54 -0
- package/scripts/changes/templates/multiple.markdown +9 -0
- package/scripts/changes/templates/single.markdown +9 -0
- package/scripts/changes/tests/common.py +195 -0
- package/scripts/changes/tests/test_cli.py +1064 -0
- package/scripts/changes/tests/test_common.py +73 -0
- package/scripts/changes/tests/test_history.py +114 -0
- package/scripts/changes/tests/test_version.py +199 -0
- package/scripts/environment.sh +33 -0
- package/scripts/install-dependencies.sh +52 -0
- package/scripts/release.sh +87 -0
- package/scripts/upload-and-publish-release.sh +38 -0
|
@@ -0,0 +1,3415 @@
|
|
|
1
|
+
from __future__ import annotations
|
|
2
|
+
|
|
3
|
+
import collections.abc as cabc
|
|
4
|
+
import enum
|
|
5
|
+
import errno
|
|
6
|
+
import inspect
|
|
7
|
+
import os
|
|
8
|
+
import sys
|
|
9
|
+
import typing as t
|
|
10
|
+
from collections import abc
|
|
11
|
+
from collections import Counter
|
|
12
|
+
from contextlib import AbstractContextManager
|
|
13
|
+
from contextlib import contextmanager
|
|
14
|
+
from contextlib import ExitStack
|
|
15
|
+
from functools import update_wrapper
|
|
16
|
+
from gettext import gettext as _
|
|
17
|
+
from gettext import ngettext
|
|
18
|
+
from itertools import repeat
|
|
19
|
+
from types import TracebackType
|
|
20
|
+
|
|
21
|
+
from . import types
|
|
22
|
+
from ._utils import FLAG_NEEDS_VALUE
|
|
23
|
+
from ._utils import UNSET
|
|
24
|
+
from .exceptions import Abort
|
|
25
|
+
from .exceptions import BadParameter
|
|
26
|
+
from .exceptions import ClickException
|
|
27
|
+
from .exceptions import Exit
|
|
28
|
+
from .exceptions import MissingParameter
|
|
29
|
+
from .exceptions import NoArgsIsHelpError
|
|
30
|
+
from .exceptions import UsageError
|
|
31
|
+
from .formatting import HelpFormatter
|
|
32
|
+
from .formatting import join_options
|
|
33
|
+
from .globals import pop_context
|
|
34
|
+
from .globals import push_context
|
|
35
|
+
from .parser import _OptionParser
|
|
36
|
+
from .parser import _split_opt
|
|
37
|
+
from .termui import confirm
|
|
38
|
+
from .termui import prompt
|
|
39
|
+
from .termui import style
|
|
40
|
+
from .utils import _detect_program_name
|
|
41
|
+
from .utils import _expand_args
|
|
42
|
+
from .utils import echo
|
|
43
|
+
from .utils import make_default_short_help
|
|
44
|
+
from .utils import make_str
|
|
45
|
+
from .utils import PacifyFlushWrapper
|
|
46
|
+
|
|
47
|
+
if t.TYPE_CHECKING:
|
|
48
|
+
from .shell_completion import CompletionItem
|
|
49
|
+
|
|
50
|
+
F = t.TypeVar("F", bound="t.Callable[..., t.Any]")
|
|
51
|
+
V = t.TypeVar("V")
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def _complete_visible_commands(
|
|
55
|
+
ctx: Context, incomplete: str
|
|
56
|
+
) -> cabc.Iterator[tuple[str, Command]]:
|
|
57
|
+
"""List all the subcommands of a group that start with the
|
|
58
|
+
incomplete value and aren't hidden.
|
|
59
|
+
|
|
60
|
+
:param ctx: Invocation context for the group.
|
|
61
|
+
:param incomplete: Value being completed. May be empty.
|
|
62
|
+
"""
|
|
63
|
+
multi = t.cast(Group, ctx.command)
|
|
64
|
+
|
|
65
|
+
for name in multi.list_commands(ctx):
|
|
66
|
+
if name.startswith(incomplete):
|
|
67
|
+
command = multi.get_command(ctx, name)
|
|
68
|
+
|
|
69
|
+
if command is not None and not command.hidden:
|
|
70
|
+
yield name, command
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def _check_nested_chain(
|
|
74
|
+
base_command: Group, cmd_name: str, cmd: Command, register: bool = False
|
|
75
|
+
) -> None:
|
|
76
|
+
if not base_command.chain or not isinstance(cmd, Group):
|
|
77
|
+
return
|
|
78
|
+
|
|
79
|
+
if register:
|
|
80
|
+
message = (
|
|
81
|
+
f"It is not possible to add the group {cmd_name!r} to another"
|
|
82
|
+
f" group {base_command.name!r} that is in chain mode."
|
|
83
|
+
)
|
|
84
|
+
else:
|
|
85
|
+
message = (
|
|
86
|
+
f"Found the group {cmd_name!r} as subcommand to another group "
|
|
87
|
+
f" {base_command.name!r} that is in chain mode. This is not supported."
|
|
88
|
+
)
|
|
89
|
+
|
|
90
|
+
raise RuntimeError(message)
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
def batch(iterable: cabc.Iterable[V], batch_size: int) -> list[tuple[V, ...]]:
|
|
94
|
+
return list(zip(*repeat(iter(iterable), batch_size), strict=False))
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
@contextmanager
|
|
98
|
+
def augment_usage_errors(
|
|
99
|
+
ctx: Context, param: Parameter | None = None
|
|
100
|
+
) -> cabc.Iterator[None]:
|
|
101
|
+
"""Context manager that attaches extra information to exceptions."""
|
|
102
|
+
try:
|
|
103
|
+
yield
|
|
104
|
+
except BadParameter as e:
|
|
105
|
+
if e.ctx is None:
|
|
106
|
+
e.ctx = ctx
|
|
107
|
+
if param is not None and e.param is None:
|
|
108
|
+
e.param = param
|
|
109
|
+
raise
|
|
110
|
+
except UsageError as e:
|
|
111
|
+
if e.ctx is None:
|
|
112
|
+
e.ctx = ctx
|
|
113
|
+
raise
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
def iter_params_for_processing(
|
|
117
|
+
invocation_order: cabc.Sequence[Parameter],
|
|
118
|
+
declaration_order: cabc.Sequence[Parameter],
|
|
119
|
+
) -> list[Parameter]:
|
|
120
|
+
"""Returns all declared parameters in the order they should be processed.
|
|
121
|
+
|
|
122
|
+
The declared parameters are re-shuffled depending on the order in which
|
|
123
|
+
they were invoked, as well as the eagerness of each parameters.
|
|
124
|
+
|
|
125
|
+
The invocation order takes precedence over the declaration order. I.e. the
|
|
126
|
+
order in which the user provided them to the CLI is respected.
|
|
127
|
+
|
|
128
|
+
This behavior and its effect on callback evaluation is detailed at:
|
|
129
|
+
https://click.palletsprojects.com/en/stable/advanced/#callback-evaluation-order
|
|
130
|
+
"""
|
|
131
|
+
|
|
132
|
+
def sort_key(item: Parameter) -> tuple[bool, float]:
|
|
133
|
+
try:
|
|
134
|
+
idx: float = invocation_order.index(item)
|
|
135
|
+
except ValueError:
|
|
136
|
+
idx = float("inf")
|
|
137
|
+
|
|
138
|
+
return not item.is_eager, idx
|
|
139
|
+
|
|
140
|
+
return sorted(declaration_order, key=sort_key)
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
class ParameterSource(enum.Enum):
|
|
144
|
+
"""This is an :class:`~enum.Enum` that indicates the source of a
|
|
145
|
+
parameter's value.
|
|
146
|
+
|
|
147
|
+
Use :meth:`click.Context.get_parameter_source` to get the
|
|
148
|
+
source for a parameter by name.
|
|
149
|
+
|
|
150
|
+
.. versionchanged:: 8.0
|
|
151
|
+
Use :class:`~enum.Enum` and drop the ``validate`` method.
|
|
152
|
+
|
|
153
|
+
.. versionchanged:: 8.0
|
|
154
|
+
Added the ``PROMPT`` value.
|
|
155
|
+
"""
|
|
156
|
+
|
|
157
|
+
COMMANDLINE = enum.auto()
|
|
158
|
+
"""The value was provided by the command line args."""
|
|
159
|
+
ENVIRONMENT = enum.auto()
|
|
160
|
+
"""The value was provided with an environment variable."""
|
|
161
|
+
DEFAULT = enum.auto()
|
|
162
|
+
"""Used the default specified by the parameter."""
|
|
163
|
+
DEFAULT_MAP = enum.auto()
|
|
164
|
+
"""Used a default provided by :attr:`Context.default_map`."""
|
|
165
|
+
PROMPT = enum.auto()
|
|
166
|
+
"""Used a prompt to confirm a default or provide a value."""
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
class Context:
|
|
170
|
+
"""The context is a special internal object that holds state relevant
|
|
171
|
+
for the script execution at every single level. It's normally invisible
|
|
172
|
+
to commands unless they opt-in to getting access to it.
|
|
173
|
+
|
|
174
|
+
The context is useful as it can pass internal objects around and can
|
|
175
|
+
control special execution features such as reading data from
|
|
176
|
+
environment variables.
|
|
177
|
+
|
|
178
|
+
A context can be used as context manager in which case it will call
|
|
179
|
+
:meth:`close` on teardown.
|
|
180
|
+
|
|
181
|
+
:param command: the command class for this context.
|
|
182
|
+
:param parent: the parent context.
|
|
183
|
+
:param info_name: the info name for this invocation. Generally this
|
|
184
|
+
is the most descriptive name for the script or
|
|
185
|
+
command. For the toplevel script it is usually
|
|
186
|
+
the name of the script, for commands below it it's
|
|
187
|
+
the name of the script.
|
|
188
|
+
:param obj: an arbitrary object of user data.
|
|
189
|
+
:param auto_envvar_prefix: the prefix to use for automatic environment
|
|
190
|
+
variables. If this is `None` then reading
|
|
191
|
+
from environment variables is disabled. This
|
|
192
|
+
does not affect manually set environment
|
|
193
|
+
variables which are always read.
|
|
194
|
+
:param default_map: a dictionary (like object) with default values
|
|
195
|
+
for parameters.
|
|
196
|
+
:param terminal_width: the width of the terminal. The default is
|
|
197
|
+
inherit from parent context. If no context
|
|
198
|
+
defines the terminal width then auto
|
|
199
|
+
detection will be applied.
|
|
200
|
+
:param max_content_width: the maximum width for content rendered by
|
|
201
|
+
Click (this currently only affects help
|
|
202
|
+
pages). This defaults to 80 characters if
|
|
203
|
+
not overridden. In other words: even if the
|
|
204
|
+
terminal is larger than that, Click will not
|
|
205
|
+
format things wider than 80 characters by
|
|
206
|
+
default. In addition to that, formatters might
|
|
207
|
+
add some safety mapping on the right.
|
|
208
|
+
:param resilient_parsing: if this flag is enabled then Click will
|
|
209
|
+
parse without any interactivity or callback
|
|
210
|
+
invocation. Default values will also be
|
|
211
|
+
ignored. This is useful for implementing
|
|
212
|
+
things such as completion support.
|
|
213
|
+
:param allow_extra_args: if this is set to `True` then extra arguments
|
|
214
|
+
at the end will not raise an error and will be
|
|
215
|
+
kept on the context. The default is to inherit
|
|
216
|
+
from the command.
|
|
217
|
+
:param allow_interspersed_args: if this is set to `False` then options
|
|
218
|
+
and arguments cannot be mixed. The
|
|
219
|
+
default is to inherit from the command.
|
|
220
|
+
:param ignore_unknown_options: instructs click to ignore options it does
|
|
221
|
+
not know and keeps them for later
|
|
222
|
+
processing.
|
|
223
|
+
:param help_option_names: optionally a list of strings that define how
|
|
224
|
+
the default help parameter is named. The
|
|
225
|
+
default is ``['--help']``.
|
|
226
|
+
:param token_normalize_func: an optional function that is used to
|
|
227
|
+
normalize tokens (options, choices,
|
|
228
|
+
etc.). This for instance can be used to
|
|
229
|
+
implement case insensitive behavior.
|
|
230
|
+
:param color: controls if the terminal supports ANSI colors or not. The
|
|
231
|
+
default is autodetection. This is only needed if ANSI
|
|
232
|
+
codes are used in texts that Click prints which is by
|
|
233
|
+
default not the case. This for instance would affect
|
|
234
|
+
help output.
|
|
235
|
+
:param show_default: Show the default value for commands. If this
|
|
236
|
+
value is not set, it defaults to the value from the parent
|
|
237
|
+
context. ``Command.show_default`` overrides this default for the
|
|
238
|
+
specific command.
|
|
239
|
+
|
|
240
|
+
.. versionchanged:: 8.2
|
|
241
|
+
The ``protected_args`` attribute is deprecated and will be removed in
|
|
242
|
+
Click 9.0. ``args`` will contain remaining unparsed tokens.
|
|
243
|
+
|
|
244
|
+
.. versionchanged:: 8.1
|
|
245
|
+
The ``show_default`` parameter is overridden by
|
|
246
|
+
``Command.show_default``, instead of the other way around.
|
|
247
|
+
|
|
248
|
+
.. versionchanged:: 8.0
|
|
249
|
+
The ``show_default`` parameter defaults to the value from the
|
|
250
|
+
parent context.
|
|
251
|
+
|
|
252
|
+
.. versionchanged:: 7.1
|
|
253
|
+
Added the ``show_default`` parameter.
|
|
254
|
+
|
|
255
|
+
.. versionchanged:: 4.0
|
|
256
|
+
Added the ``color``, ``ignore_unknown_options``, and
|
|
257
|
+
``max_content_width`` parameters.
|
|
258
|
+
|
|
259
|
+
.. versionchanged:: 3.0
|
|
260
|
+
Added the ``allow_extra_args`` and ``allow_interspersed_args``
|
|
261
|
+
parameters.
|
|
262
|
+
|
|
263
|
+
.. versionchanged:: 2.0
|
|
264
|
+
Added the ``resilient_parsing``, ``help_option_names``, and
|
|
265
|
+
``token_normalize_func`` parameters.
|
|
266
|
+
"""
|
|
267
|
+
|
|
268
|
+
#: The formatter class to create with :meth:`make_formatter`.
|
|
269
|
+
#:
|
|
270
|
+
#: .. versionadded:: 8.0
|
|
271
|
+
formatter_class: type[HelpFormatter] = HelpFormatter
|
|
272
|
+
|
|
273
|
+
def __init__(
|
|
274
|
+
self,
|
|
275
|
+
command: Command,
|
|
276
|
+
parent: Context | None = None,
|
|
277
|
+
info_name: str | None = None,
|
|
278
|
+
obj: t.Any | None = None,
|
|
279
|
+
auto_envvar_prefix: str | None = None,
|
|
280
|
+
default_map: cabc.MutableMapping[str, t.Any] | None = None,
|
|
281
|
+
terminal_width: int | None = None,
|
|
282
|
+
max_content_width: int | None = None,
|
|
283
|
+
resilient_parsing: bool = False,
|
|
284
|
+
allow_extra_args: bool | None = None,
|
|
285
|
+
allow_interspersed_args: bool | None = None,
|
|
286
|
+
ignore_unknown_options: bool | None = None,
|
|
287
|
+
help_option_names: list[str] | None = None,
|
|
288
|
+
token_normalize_func: t.Callable[[str], str] | None = None,
|
|
289
|
+
color: bool | None = None,
|
|
290
|
+
show_default: bool | None = None,
|
|
291
|
+
) -> None:
|
|
292
|
+
#: the parent context or `None` if none exists.
|
|
293
|
+
self.parent = parent
|
|
294
|
+
#: the :class:`Command` for this context.
|
|
295
|
+
self.command = command
|
|
296
|
+
#: the descriptive information name
|
|
297
|
+
self.info_name = info_name
|
|
298
|
+
#: Map of parameter names to their parsed values. Parameters
|
|
299
|
+
#: with ``expose_value=False`` are not stored.
|
|
300
|
+
self.params: dict[str, t.Any] = {}
|
|
301
|
+
#: the leftover arguments.
|
|
302
|
+
self.args: list[str] = []
|
|
303
|
+
#: protected arguments. These are arguments that are prepended
|
|
304
|
+
#: to `args` when certain parsing scenarios are encountered but
|
|
305
|
+
#: must be never propagated to another arguments. This is used
|
|
306
|
+
#: to implement nested parsing.
|
|
307
|
+
self._protected_args: list[str] = []
|
|
308
|
+
#: the collected prefixes of the command's options.
|
|
309
|
+
self._opt_prefixes: set[str] = set(parent._opt_prefixes) if parent else set()
|
|
310
|
+
|
|
311
|
+
if obj is None and parent is not None:
|
|
312
|
+
obj = parent.obj
|
|
313
|
+
|
|
314
|
+
#: the user object stored.
|
|
315
|
+
self.obj: t.Any = obj
|
|
316
|
+
self._meta: dict[str, t.Any] = getattr(parent, "meta", {})
|
|
317
|
+
|
|
318
|
+
#: A dictionary (-like object) with defaults for parameters.
|
|
319
|
+
if (
|
|
320
|
+
default_map is None
|
|
321
|
+
and info_name is not None
|
|
322
|
+
and parent is not None
|
|
323
|
+
and parent.default_map is not None
|
|
324
|
+
):
|
|
325
|
+
default_map = parent.default_map.get(info_name)
|
|
326
|
+
|
|
327
|
+
self.default_map: cabc.MutableMapping[str, t.Any] | None = default_map
|
|
328
|
+
|
|
329
|
+
#: This flag indicates if a subcommand is going to be executed. A
|
|
330
|
+
#: group callback can use this information to figure out if it's
|
|
331
|
+
#: being executed directly or because the execution flow passes
|
|
332
|
+
#: onwards to a subcommand. By default it's None, but it can be
|
|
333
|
+
#: the name of the subcommand to execute.
|
|
334
|
+
#:
|
|
335
|
+
#: If chaining is enabled this will be set to ``'*'`` in case
|
|
336
|
+
#: any commands are executed. It is however not possible to
|
|
337
|
+
#: figure out which ones. If you require this knowledge you
|
|
338
|
+
#: should use a :func:`result_callback`.
|
|
339
|
+
self.invoked_subcommand: str | None = None
|
|
340
|
+
|
|
341
|
+
if terminal_width is None and parent is not None:
|
|
342
|
+
terminal_width = parent.terminal_width
|
|
343
|
+
|
|
344
|
+
#: The width of the terminal (None is autodetection).
|
|
345
|
+
self.terminal_width: int | None = terminal_width
|
|
346
|
+
|
|
347
|
+
if max_content_width is None and parent is not None:
|
|
348
|
+
max_content_width = parent.max_content_width
|
|
349
|
+
|
|
350
|
+
#: The maximum width of formatted content (None implies a sensible
|
|
351
|
+
#: default which is 80 for most things).
|
|
352
|
+
self.max_content_width: int | None = max_content_width
|
|
353
|
+
|
|
354
|
+
if allow_extra_args is None:
|
|
355
|
+
allow_extra_args = command.allow_extra_args
|
|
356
|
+
|
|
357
|
+
#: Indicates if the context allows extra args or if it should
|
|
358
|
+
#: fail on parsing.
|
|
359
|
+
#:
|
|
360
|
+
#: .. versionadded:: 3.0
|
|
361
|
+
self.allow_extra_args = allow_extra_args
|
|
362
|
+
|
|
363
|
+
if allow_interspersed_args is None:
|
|
364
|
+
allow_interspersed_args = command.allow_interspersed_args
|
|
365
|
+
|
|
366
|
+
#: Indicates if the context allows mixing of arguments and
|
|
367
|
+
#: options or not.
|
|
368
|
+
#:
|
|
369
|
+
#: .. versionadded:: 3.0
|
|
370
|
+
self.allow_interspersed_args: bool = allow_interspersed_args
|
|
371
|
+
|
|
372
|
+
if ignore_unknown_options is None:
|
|
373
|
+
ignore_unknown_options = command.ignore_unknown_options
|
|
374
|
+
|
|
375
|
+
#: Instructs click to ignore options that a command does not
|
|
376
|
+
#: understand and will store it on the context for later
|
|
377
|
+
#: processing. This is primarily useful for situations where you
|
|
378
|
+
#: want to call into external programs. Generally this pattern is
|
|
379
|
+
#: strongly discouraged because it's not possibly to losslessly
|
|
380
|
+
#: forward all arguments.
|
|
381
|
+
#:
|
|
382
|
+
#: .. versionadded:: 4.0
|
|
383
|
+
self.ignore_unknown_options: bool = ignore_unknown_options
|
|
384
|
+
|
|
385
|
+
if help_option_names is None:
|
|
386
|
+
if parent is not None:
|
|
387
|
+
help_option_names = parent.help_option_names
|
|
388
|
+
else:
|
|
389
|
+
help_option_names = ["--help"]
|
|
390
|
+
|
|
391
|
+
#: The names for the help options.
|
|
392
|
+
self.help_option_names: list[str] = help_option_names
|
|
393
|
+
|
|
394
|
+
if token_normalize_func is None and parent is not None:
|
|
395
|
+
token_normalize_func = parent.token_normalize_func
|
|
396
|
+
|
|
397
|
+
#: An optional normalization function for tokens. This is
|
|
398
|
+
#: options, choices, commands etc.
|
|
399
|
+
self.token_normalize_func: t.Callable[[str], str] | None = token_normalize_func
|
|
400
|
+
|
|
401
|
+
#: Indicates if resilient parsing is enabled. In that case Click
|
|
402
|
+
#: will do its best to not cause any failures and default values
|
|
403
|
+
#: will be ignored. Useful for completion.
|
|
404
|
+
self.resilient_parsing: bool = resilient_parsing
|
|
405
|
+
|
|
406
|
+
# If there is no envvar prefix yet, but the parent has one and
|
|
407
|
+
# the command on this level has a name, we can expand the envvar
|
|
408
|
+
# prefix automatically.
|
|
409
|
+
if auto_envvar_prefix is None:
|
|
410
|
+
if (
|
|
411
|
+
parent is not None
|
|
412
|
+
and parent.auto_envvar_prefix is not None
|
|
413
|
+
and self.info_name is not None
|
|
414
|
+
):
|
|
415
|
+
auto_envvar_prefix = (
|
|
416
|
+
f"{parent.auto_envvar_prefix}_{self.info_name.upper()}"
|
|
417
|
+
)
|
|
418
|
+
else:
|
|
419
|
+
auto_envvar_prefix = auto_envvar_prefix.upper()
|
|
420
|
+
|
|
421
|
+
if auto_envvar_prefix is not None:
|
|
422
|
+
auto_envvar_prefix = auto_envvar_prefix.replace("-", "_")
|
|
423
|
+
|
|
424
|
+
self.auto_envvar_prefix: str | None = auto_envvar_prefix
|
|
425
|
+
|
|
426
|
+
if color is None and parent is not None:
|
|
427
|
+
color = parent.color
|
|
428
|
+
|
|
429
|
+
#: Controls if styling output is wanted or not.
|
|
430
|
+
self.color: bool | None = color
|
|
431
|
+
|
|
432
|
+
if show_default is None and parent is not None:
|
|
433
|
+
show_default = parent.show_default
|
|
434
|
+
|
|
435
|
+
#: Show option default values when formatting help text.
|
|
436
|
+
self.show_default: bool | None = show_default
|
|
437
|
+
|
|
438
|
+
self._close_callbacks: list[t.Callable[[], t.Any]] = []
|
|
439
|
+
self._depth = 0
|
|
440
|
+
self._parameter_source: dict[str, ParameterSource] = {}
|
|
441
|
+
self._exit_stack = ExitStack()
|
|
442
|
+
|
|
443
|
+
@property
|
|
444
|
+
def protected_args(self) -> list[str]:
|
|
445
|
+
import warnings
|
|
446
|
+
|
|
447
|
+
warnings.warn(
|
|
448
|
+
"'protected_args' is deprecated and will be removed in Click 9.0."
|
|
449
|
+
" 'args' will contain remaining unparsed tokens.",
|
|
450
|
+
DeprecationWarning,
|
|
451
|
+
stacklevel=2,
|
|
452
|
+
)
|
|
453
|
+
return self._protected_args
|
|
454
|
+
|
|
455
|
+
def to_info_dict(self) -> dict[str, t.Any]:
|
|
456
|
+
"""Gather information that could be useful for a tool generating
|
|
457
|
+
user-facing documentation. This traverses the entire CLI
|
|
458
|
+
structure.
|
|
459
|
+
|
|
460
|
+
.. code-block:: python
|
|
461
|
+
|
|
462
|
+
with Context(cli) as ctx:
|
|
463
|
+
info = ctx.to_info_dict()
|
|
464
|
+
|
|
465
|
+
.. versionadded:: 8.0
|
|
466
|
+
"""
|
|
467
|
+
return {
|
|
468
|
+
"command": self.command.to_info_dict(self),
|
|
469
|
+
"info_name": self.info_name,
|
|
470
|
+
"allow_extra_args": self.allow_extra_args,
|
|
471
|
+
"allow_interspersed_args": self.allow_interspersed_args,
|
|
472
|
+
"ignore_unknown_options": self.ignore_unknown_options,
|
|
473
|
+
"auto_envvar_prefix": self.auto_envvar_prefix,
|
|
474
|
+
}
|
|
475
|
+
|
|
476
|
+
def __enter__(self) -> Context:
|
|
477
|
+
self._depth += 1
|
|
478
|
+
push_context(self)
|
|
479
|
+
return self
|
|
480
|
+
|
|
481
|
+
def __exit__(
|
|
482
|
+
self,
|
|
483
|
+
exc_type: type[BaseException] | None,
|
|
484
|
+
exc_value: BaseException | None,
|
|
485
|
+
tb: TracebackType | None,
|
|
486
|
+
) -> bool | None:
|
|
487
|
+
self._depth -= 1
|
|
488
|
+
exit_result: bool | None = None
|
|
489
|
+
if self._depth == 0:
|
|
490
|
+
exit_result = self._close_with_exception_info(exc_type, exc_value, tb)
|
|
491
|
+
pop_context()
|
|
492
|
+
|
|
493
|
+
return exit_result
|
|
494
|
+
|
|
495
|
+
@contextmanager
|
|
496
|
+
def scope(self, cleanup: bool = True) -> cabc.Iterator[Context]:
|
|
497
|
+
"""This helper method can be used with the context object to promote
|
|
498
|
+
it to the current thread local (see :func:`get_current_context`).
|
|
499
|
+
The default behavior of this is to invoke the cleanup functions which
|
|
500
|
+
can be disabled by setting `cleanup` to `False`. The cleanup
|
|
501
|
+
functions are typically used for things such as closing file handles.
|
|
502
|
+
|
|
503
|
+
If the cleanup is intended the context object can also be directly
|
|
504
|
+
used as a context manager.
|
|
505
|
+
|
|
506
|
+
Example usage::
|
|
507
|
+
|
|
508
|
+
with ctx.scope():
|
|
509
|
+
assert get_current_context() is ctx
|
|
510
|
+
|
|
511
|
+
This is equivalent::
|
|
512
|
+
|
|
513
|
+
with ctx:
|
|
514
|
+
assert get_current_context() is ctx
|
|
515
|
+
|
|
516
|
+
.. versionadded:: 5.0
|
|
517
|
+
|
|
518
|
+
:param cleanup: controls if the cleanup functions should be run or
|
|
519
|
+
not. The default is to run these functions. In
|
|
520
|
+
some situations the context only wants to be
|
|
521
|
+
temporarily pushed in which case this can be disabled.
|
|
522
|
+
Nested pushes automatically defer the cleanup.
|
|
523
|
+
"""
|
|
524
|
+
if not cleanup:
|
|
525
|
+
self._depth += 1
|
|
526
|
+
try:
|
|
527
|
+
with self as rv:
|
|
528
|
+
yield rv
|
|
529
|
+
finally:
|
|
530
|
+
if not cleanup:
|
|
531
|
+
self._depth -= 1
|
|
532
|
+
|
|
533
|
+
@property
|
|
534
|
+
def meta(self) -> dict[str, t.Any]:
|
|
535
|
+
"""This is a dictionary which is shared with all the contexts
|
|
536
|
+
that are nested. It exists so that click utilities can store some
|
|
537
|
+
state here if they need to. It is however the responsibility of
|
|
538
|
+
that code to manage this dictionary well.
|
|
539
|
+
|
|
540
|
+
The keys are supposed to be unique dotted strings. For instance
|
|
541
|
+
module paths are a good choice for it. What is stored in there is
|
|
542
|
+
irrelevant for the operation of click. However what is important is
|
|
543
|
+
that code that places data here adheres to the general semantics of
|
|
544
|
+
the system.
|
|
545
|
+
|
|
546
|
+
Example usage::
|
|
547
|
+
|
|
548
|
+
LANG_KEY = f'{__name__}.lang'
|
|
549
|
+
|
|
550
|
+
def set_language(value):
|
|
551
|
+
ctx = get_current_context()
|
|
552
|
+
ctx.meta[LANG_KEY] = value
|
|
553
|
+
|
|
554
|
+
def get_language():
|
|
555
|
+
return get_current_context().meta.get(LANG_KEY, 'en_US')
|
|
556
|
+
|
|
557
|
+
.. versionadded:: 5.0
|
|
558
|
+
"""
|
|
559
|
+
return self._meta
|
|
560
|
+
|
|
561
|
+
def make_formatter(self) -> HelpFormatter:
|
|
562
|
+
"""Creates the :class:`~click.HelpFormatter` for the help and
|
|
563
|
+
usage output.
|
|
564
|
+
|
|
565
|
+
To quickly customize the formatter class used without overriding
|
|
566
|
+
this method, set the :attr:`formatter_class` attribute.
|
|
567
|
+
|
|
568
|
+
.. versionchanged:: 8.0
|
|
569
|
+
Added the :attr:`formatter_class` attribute.
|
|
570
|
+
"""
|
|
571
|
+
return self.formatter_class(
|
|
572
|
+
width=self.terminal_width, max_width=self.max_content_width
|
|
573
|
+
)
|
|
574
|
+
|
|
575
|
+
def with_resource(self, context_manager: AbstractContextManager[V]) -> V:
|
|
576
|
+
"""Register a resource as if it were used in a ``with``
|
|
577
|
+
statement. The resource will be cleaned up when the context is
|
|
578
|
+
popped.
|
|
579
|
+
|
|
580
|
+
Uses :meth:`contextlib.ExitStack.enter_context`. It calls the
|
|
581
|
+
resource's ``__enter__()`` method and returns the result. When
|
|
582
|
+
the context is popped, it closes the stack, which calls the
|
|
583
|
+
resource's ``__exit__()`` method.
|
|
584
|
+
|
|
585
|
+
To register a cleanup function for something that isn't a
|
|
586
|
+
context manager, use :meth:`call_on_close`. Or use something
|
|
587
|
+
from :mod:`contextlib` to turn it into a context manager first.
|
|
588
|
+
|
|
589
|
+
.. code-block:: python
|
|
590
|
+
|
|
591
|
+
@click.group()
|
|
592
|
+
@click.option("--name")
|
|
593
|
+
@click.pass_context
|
|
594
|
+
def cli(ctx):
|
|
595
|
+
ctx.obj = ctx.with_resource(connect_db(name))
|
|
596
|
+
|
|
597
|
+
:param context_manager: The context manager to enter.
|
|
598
|
+
:return: Whatever ``context_manager.__enter__()`` returns.
|
|
599
|
+
|
|
600
|
+
.. versionadded:: 8.0
|
|
601
|
+
"""
|
|
602
|
+
return self._exit_stack.enter_context(context_manager)
|
|
603
|
+
|
|
604
|
+
def call_on_close(self, f: t.Callable[..., t.Any]) -> t.Callable[..., t.Any]:
|
|
605
|
+
"""Register a function to be called when the context tears down.
|
|
606
|
+
|
|
607
|
+
This can be used to close resources opened during the script
|
|
608
|
+
execution. Resources that support Python's context manager
|
|
609
|
+
protocol which would be used in a ``with`` statement should be
|
|
610
|
+
registered with :meth:`with_resource` instead.
|
|
611
|
+
|
|
612
|
+
:param f: The function to execute on teardown.
|
|
613
|
+
"""
|
|
614
|
+
return self._exit_stack.callback(f)
|
|
615
|
+
|
|
616
|
+
def close(self) -> None:
|
|
617
|
+
"""Invoke all close callbacks registered with
|
|
618
|
+
:meth:`call_on_close`, and exit all context managers entered
|
|
619
|
+
with :meth:`with_resource`.
|
|
620
|
+
"""
|
|
621
|
+
self._close_with_exception_info(None, None, None)
|
|
622
|
+
|
|
623
|
+
def _close_with_exception_info(
|
|
624
|
+
self,
|
|
625
|
+
exc_type: type[BaseException] | None,
|
|
626
|
+
exc_value: BaseException | None,
|
|
627
|
+
tb: TracebackType | None,
|
|
628
|
+
) -> bool | None:
|
|
629
|
+
"""Unwind the exit stack by calling its :meth:`__exit__` providing the exception
|
|
630
|
+
information to allow for exception handling by the various resources registered
|
|
631
|
+
using :meth;`with_resource`
|
|
632
|
+
|
|
633
|
+
:return: Whatever ``exit_stack.__exit__()`` returns.
|
|
634
|
+
"""
|
|
635
|
+
exit_result = self._exit_stack.__exit__(exc_type, exc_value, tb)
|
|
636
|
+
# In case the context is reused, create a new exit stack.
|
|
637
|
+
self._exit_stack = ExitStack()
|
|
638
|
+
|
|
639
|
+
return exit_result
|
|
640
|
+
|
|
641
|
+
@property
|
|
642
|
+
def command_path(self) -> str:
|
|
643
|
+
"""The computed command path. This is used for the ``usage``
|
|
644
|
+
information on the help page. It's automatically created by
|
|
645
|
+
combining the info names of the chain of contexts to the root.
|
|
646
|
+
"""
|
|
647
|
+
rv = ""
|
|
648
|
+
if self.info_name is not None:
|
|
649
|
+
rv = self.info_name
|
|
650
|
+
if self.parent is not None:
|
|
651
|
+
parent_command_path = [self.parent.command_path]
|
|
652
|
+
|
|
653
|
+
if isinstance(self.parent.command, Command):
|
|
654
|
+
for param in self.parent.command.get_params(self):
|
|
655
|
+
parent_command_path.extend(param.get_usage_pieces(self))
|
|
656
|
+
|
|
657
|
+
rv = f"{' '.join(parent_command_path)} {rv}"
|
|
658
|
+
return rv.lstrip()
|
|
659
|
+
|
|
660
|
+
def find_root(self) -> Context:
|
|
661
|
+
"""Finds the outermost context."""
|
|
662
|
+
node = self
|
|
663
|
+
while node.parent is not None:
|
|
664
|
+
node = node.parent
|
|
665
|
+
return node
|
|
666
|
+
|
|
667
|
+
def find_object(self, object_type: type[V]) -> V | None:
|
|
668
|
+
"""Finds the closest object of a given type."""
|
|
669
|
+
node: Context | None = self
|
|
670
|
+
|
|
671
|
+
while node is not None:
|
|
672
|
+
if isinstance(node.obj, object_type):
|
|
673
|
+
return node.obj
|
|
674
|
+
|
|
675
|
+
node = node.parent
|
|
676
|
+
|
|
677
|
+
return None
|
|
678
|
+
|
|
679
|
+
def ensure_object(self, object_type: type[V]) -> V:
|
|
680
|
+
"""Like :meth:`find_object` but sets the innermost object to a
|
|
681
|
+
new instance of `object_type` if it does not exist.
|
|
682
|
+
"""
|
|
683
|
+
rv = self.find_object(object_type)
|
|
684
|
+
if rv is None:
|
|
685
|
+
self.obj = rv = object_type()
|
|
686
|
+
return rv
|
|
687
|
+
|
|
688
|
+
@t.overload
|
|
689
|
+
def lookup_default(
|
|
690
|
+
self, name: str, call: t.Literal[True] = True
|
|
691
|
+
) -> t.Any | None: ...
|
|
692
|
+
|
|
693
|
+
@t.overload
|
|
694
|
+
def lookup_default(
|
|
695
|
+
self, name: str, call: t.Literal[False] = ...
|
|
696
|
+
) -> t.Any | t.Callable[[], t.Any] | None: ...
|
|
697
|
+
|
|
698
|
+
def lookup_default(self, name: str, call: bool = True) -> t.Any | None:
|
|
699
|
+
"""Get the default for a parameter from :attr:`default_map`.
|
|
700
|
+
|
|
701
|
+
:param name: Name of the parameter.
|
|
702
|
+
:param call: If the default is a callable, call it. Disable to
|
|
703
|
+
return the callable instead.
|
|
704
|
+
|
|
705
|
+
.. versionchanged:: 8.0
|
|
706
|
+
Added the ``call`` parameter.
|
|
707
|
+
"""
|
|
708
|
+
if self.default_map is not None:
|
|
709
|
+
value = self.default_map.get(name, UNSET)
|
|
710
|
+
|
|
711
|
+
if call and callable(value):
|
|
712
|
+
return value()
|
|
713
|
+
|
|
714
|
+
return value
|
|
715
|
+
|
|
716
|
+
return UNSET
|
|
717
|
+
|
|
718
|
+
def fail(self, message: str) -> t.NoReturn:
|
|
719
|
+
"""Aborts the execution of the program with a specific error
|
|
720
|
+
message.
|
|
721
|
+
|
|
722
|
+
:param message: the error message to fail with.
|
|
723
|
+
"""
|
|
724
|
+
raise UsageError(message, self)
|
|
725
|
+
|
|
726
|
+
def abort(self) -> t.NoReturn:
|
|
727
|
+
"""Aborts the script."""
|
|
728
|
+
raise Abort()
|
|
729
|
+
|
|
730
|
+
def exit(self, code: int = 0) -> t.NoReturn:
|
|
731
|
+
"""Exits the application with a given exit code.
|
|
732
|
+
|
|
733
|
+
.. versionchanged:: 8.2
|
|
734
|
+
Callbacks and context managers registered with :meth:`call_on_close`
|
|
735
|
+
and :meth:`with_resource` are closed before exiting.
|
|
736
|
+
"""
|
|
737
|
+
self.close()
|
|
738
|
+
raise Exit(code)
|
|
739
|
+
|
|
740
|
+
def get_usage(self) -> str:
|
|
741
|
+
"""Helper method to get formatted usage string for the current
|
|
742
|
+
context and command.
|
|
743
|
+
"""
|
|
744
|
+
return self.command.get_usage(self)
|
|
745
|
+
|
|
746
|
+
def get_help(self) -> str:
|
|
747
|
+
"""Helper method to get formatted help page for the current
|
|
748
|
+
context and command.
|
|
749
|
+
"""
|
|
750
|
+
return self.command.get_help(self)
|
|
751
|
+
|
|
752
|
+
def _make_sub_context(self, command: Command) -> Context:
|
|
753
|
+
"""Create a new context of the same type as this context, but
|
|
754
|
+
for a new command.
|
|
755
|
+
|
|
756
|
+
:meta private:
|
|
757
|
+
"""
|
|
758
|
+
return type(self)(command, info_name=command.name, parent=self)
|
|
759
|
+
|
|
760
|
+
@t.overload
|
|
761
|
+
def invoke(
|
|
762
|
+
self, callback: t.Callable[..., V], /, *args: t.Any, **kwargs: t.Any
|
|
763
|
+
) -> V: ...
|
|
764
|
+
|
|
765
|
+
@t.overload
|
|
766
|
+
def invoke(self, callback: Command, /, *args: t.Any, **kwargs: t.Any) -> t.Any: ...
|
|
767
|
+
|
|
768
|
+
def invoke(
|
|
769
|
+
self, callback: Command | t.Callable[..., V], /, *args: t.Any, **kwargs: t.Any
|
|
770
|
+
) -> t.Any | V:
|
|
771
|
+
"""Invokes a command callback in exactly the way it expects. There
|
|
772
|
+
are two ways to invoke this method:
|
|
773
|
+
|
|
774
|
+
1. the first argument can be a callback and all other arguments and
|
|
775
|
+
keyword arguments are forwarded directly to the function.
|
|
776
|
+
2. the first argument is a click command object. In that case all
|
|
777
|
+
arguments are forwarded as well but proper click parameters
|
|
778
|
+
(options and click arguments) must be keyword arguments and Click
|
|
779
|
+
will fill in defaults.
|
|
780
|
+
|
|
781
|
+
.. versionchanged:: 8.0
|
|
782
|
+
All ``kwargs`` are tracked in :attr:`params` so they will be
|
|
783
|
+
passed if :meth:`forward` is called at multiple levels.
|
|
784
|
+
|
|
785
|
+
.. versionchanged:: 3.2
|
|
786
|
+
A new context is created, and missing arguments use default values.
|
|
787
|
+
"""
|
|
788
|
+
if isinstance(callback, Command):
|
|
789
|
+
other_cmd = callback
|
|
790
|
+
|
|
791
|
+
if other_cmd.callback is None:
|
|
792
|
+
raise TypeError(
|
|
793
|
+
"The given command does not have a callback that can be invoked."
|
|
794
|
+
)
|
|
795
|
+
else:
|
|
796
|
+
callback = t.cast("t.Callable[..., V]", other_cmd.callback)
|
|
797
|
+
|
|
798
|
+
ctx = self._make_sub_context(other_cmd)
|
|
799
|
+
|
|
800
|
+
for param in other_cmd.params:
|
|
801
|
+
if param.name not in kwargs and param.expose_value:
|
|
802
|
+
default_value = param.get_default(ctx)
|
|
803
|
+
# We explicitly hide the :attr:`UNSET` value to the user, as we
|
|
804
|
+
# choose to make it an implementation detail. And because ``invoke``
|
|
805
|
+
# has been designed as part of Click public API, we return ``None``
|
|
806
|
+
# instead. Refs:
|
|
807
|
+
# https://github.com/pallets/click/issues/3066
|
|
808
|
+
# https://github.com/pallets/click/issues/3065
|
|
809
|
+
# https://github.com/pallets/click/pull/3068
|
|
810
|
+
if default_value is UNSET:
|
|
811
|
+
default_value = None
|
|
812
|
+
kwargs[param.name] = param.type_cast_value( # type: ignore
|
|
813
|
+
ctx, default_value
|
|
814
|
+
)
|
|
815
|
+
|
|
816
|
+
# Track all kwargs as params, so that forward() will pass
|
|
817
|
+
# them on in subsequent calls.
|
|
818
|
+
ctx.params.update(kwargs)
|
|
819
|
+
else:
|
|
820
|
+
ctx = self
|
|
821
|
+
|
|
822
|
+
with augment_usage_errors(self):
|
|
823
|
+
with ctx:
|
|
824
|
+
return callback(*args, **kwargs)
|
|
825
|
+
|
|
826
|
+
def forward(self, cmd: Command, /, *args: t.Any, **kwargs: t.Any) -> t.Any:
|
|
827
|
+
"""Similar to :meth:`invoke` but fills in default keyword
|
|
828
|
+
arguments from the current context if the other command expects
|
|
829
|
+
it. This cannot invoke callbacks directly, only other commands.
|
|
830
|
+
|
|
831
|
+
.. versionchanged:: 8.0
|
|
832
|
+
All ``kwargs`` are tracked in :attr:`params` so they will be
|
|
833
|
+
passed if ``forward`` is called at multiple levels.
|
|
834
|
+
"""
|
|
835
|
+
# Can only forward to other commands, not direct callbacks.
|
|
836
|
+
if not isinstance(cmd, Command):
|
|
837
|
+
raise TypeError("Callback is not a command.")
|
|
838
|
+
|
|
839
|
+
for param in self.params:
|
|
840
|
+
if param not in kwargs:
|
|
841
|
+
kwargs[param] = self.params[param]
|
|
842
|
+
|
|
843
|
+
return self.invoke(cmd, *args, **kwargs)
|
|
844
|
+
|
|
845
|
+
def set_parameter_source(self, name: str, source: ParameterSource) -> None:
|
|
846
|
+
"""Set the source of a parameter. This indicates the location
|
|
847
|
+
from which the value of the parameter was obtained.
|
|
848
|
+
|
|
849
|
+
:param name: The name of the parameter.
|
|
850
|
+
:param source: A member of :class:`~click.core.ParameterSource`.
|
|
851
|
+
"""
|
|
852
|
+
self._parameter_source[name] = source
|
|
853
|
+
|
|
854
|
+
def get_parameter_source(self, name: str) -> ParameterSource | None:
|
|
855
|
+
"""Get the source of a parameter. This indicates the location
|
|
856
|
+
from which the value of the parameter was obtained.
|
|
857
|
+
|
|
858
|
+
This can be useful for determining when a user specified a value
|
|
859
|
+
on the command line that is the same as the default value. It
|
|
860
|
+
will be :attr:`~click.core.ParameterSource.DEFAULT` only if the
|
|
861
|
+
value was actually taken from the default.
|
|
862
|
+
|
|
863
|
+
:param name: The name of the parameter.
|
|
864
|
+
:rtype: ParameterSource
|
|
865
|
+
|
|
866
|
+
.. versionchanged:: 8.0
|
|
867
|
+
Returns ``None`` if the parameter was not provided from any
|
|
868
|
+
source.
|
|
869
|
+
"""
|
|
870
|
+
return self._parameter_source.get(name)
|
|
871
|
+
|
|
872
|
+
|
|
873
|
+
class Command:
|
|
874
|
+
"""Commands are the basic building block of command line interfaces in
|
|
875
|
+
Click. A basic command handles command line parsing and might dispatch
|
|
876
|
+
more parsing to commands nested below it.
|
|
877
|
+
|
|
878
|
+
:param name: the name of the command to use unless a group overrides it.
|
|
879
|
+
:param context_settings: an optional dictionary with defaults that are
|
|
880
|
+
passed to the context object.
|
|
881
|
+
:param callback: the callback to invoke. This is optional.
|
|
882
|
+
:param params: the parameters to register with this command. This can
|
|
883
|
+
be either :class:`Option` or :class:`Argument` objects.
|
|
884
|
+
:param help: the help string to use for this command.
|
|
885
|
+
:param epilog: like the help string but it's printed at the end of the
|
|
886
|
+
help page after everything else.
|
|
887
|
+
:param short_help: the short help to use for this command. This is
|
|
888
|
+
shown on the command listing of the parent command.
|
|
889
|
+
:param add_help_option: by default each command registers a ``--help``
|
|
890
|
+
option. This can be disabled by this parameter.
|
|
891
|
+
:param no_args_is_help: this controls what happens if no arguments are
|
|
892
|
+
provided. This option is disabled by default.
|
|
893
|
+
If enabled this will add ``--help`` as argument
|
|
894
|
+
if no arguments are passed
|
|
895
|
+
:param hidden: hide this command from help outputs.
|
|
896
|
+
:param deprecated: If ``True`` or non-empty string, issues a message
|
|
897
|
+
indicating that the command is deprecated and highlights
|
|
898
|
+
its deprecation in --help. The message can be customized
|
|
899
|
+
by using a string as the value.
|
|
900
|
+
|
|
901
|
+
.. versionchanged:: 8.2
|
|
902
|
+
This is the base class for all commands, not ``BaseCommand``.
|
|
903
|
+
``deprecated`` can be set to a string as well to customize the
|
|
904
|
+
deprecation message.
|
|
905
|
+
|
|
906
|
+
.. versionchanged:: 8.1
|
|
907
|
+
``help``, ``epilog``, and ``short_help`` are stored unprocessed,
|
|
908
|
+
all formatting is done when outputting help text, not at init,
|
|
909
|
+
and is done even if not using the ``@command`` decorator.
|
|
910
|
+
|
|
911
|
+
.. versionchanged:: 8.0
|
|
912
|
+
Added a ``repr`` showing the command name.
|
|
913
|
+
|
|
914
|
+
.. versionchanged:: 7.1
|
|
915
|
+
Added the ``no_args_is_help`` parameter.
|
|
916
|
+
|
|
917
|
+
.. versionchanged:: 2.0
|
|
918
|
+
Added the ``context_settings`` parameter.
|
|
919
|
+
"""
|
|
920
|
+
|
|
921
|
+
#: The context class to create with :meth:`make_context`.
|
|
922
|
+
#:
|
|
923
|
+
#: .. versionadded:: 8.0
|
|
924
|
+
context_class: type[Context] = Context
|
|
925
|
+
|
|
926
|
+
#: the default for the :attr:`Context.allow_extra_args` flag.
|
|
927
|
+
allow_extra_args = False
|
|
928
|
+
|
|
929
|
+
#: the default for the :attr:`Context.allow_interspersed_args` flag.
|
|
930
|
+
allow_interspersed_args = True
|
|
931
|
+
|
|
932
|
+
#: the default for the :attr:`Context.ignore_unknown_options` flag.
|
|
933
|
+
ignore_unknown_options = False
|
|
934
|
+
|
|
935
|
+
def __init__(
|
|
936
|
+
self,
|
|
937
|
+
name: str | None,
|
|
938
|
+
context_settings: cabc.MutableMapping[str, t.Any] | None = None,
|
|
939
|
+
callback: t.Callable[..., t.Any] | None = None,
|
|
940
|
+
params: list[Parameter] | None = None,
|
|
941
|
+
help: str | None = None,
|
|
942
|
+
epilog: str | None = None,
|
|
943
|
+
short_help: str | None = None,
|
|
944
|
+
options_metavar: str | None = "[OPTIONS]",
|
|
945
|
+
add_help_option: bool = True,
|
|
946
|
+
no_args_is_help: bool = False,
|
|
947
|
+
hidden: bool = False,
|
|
948
|
+
deprecated: bool | str = False,
|
|
949
|
+
) -> None:
|
|
950
|
+
#: the name the command thinks it has. Upon registering a command
|
|
951
|
+
#: on a :class:`Group` the group will default the command name
|
|
952
|
+
#: with this information. You should instead use the
|
|
953
|
+
#: :class:`Context`\'s :attr:`~Context.info_name` attribute.
|
|
954
|
+
self.name = name
|
|
955
|
+
|
|
956
|
+
if context_settings is None:
|
|
957
|
+
context_settings = {}
|
|
958
|
+
|
|
959
|
+
#: an optional dictionary with defaults passed to the context.
|
|
960
|
+
self.context_settings: cabc.MutableMapping[str, t.Any] = context_settings
|
|
961
|
+
|
|
962
|
+
#: the callback to execute when the command fires. This might be
|
|
963
|
+
#: `None` in which case nothing happens.
|
|
964
|
+
self.callback = callback
|
|
965
|
+
#: the list of parameters for this command in the order they
|
|
966
|
+
#: should show up in the help page and execute. Eager parameters
|
|
967
|
+
#: will automatically be handled before non eager ones.
|
|
968
|
+
self.params: list[Parameter] = params or []
|
|
969
|
+
self.help = help
|
|
970
|
+
self.epilog = epilog
|
|
971
|
+
self.options_metavar = options_metavar
|
|
972
|
+
self.short_help = short_help
|
|
973
|
+
self.add_help_option = add_help_option
|
|
974
|
+
self._help_option = None
|
|
975
|
+
self.no_args_is_help = no_args_is_help
|
|
976
|
+
self.hidden = hidden
|
|
977
|
+
self.deprecated = deprecated
|
|
978
|
+
|
|
979
|
+
def to_info_dict(self, ctx: Context) -> dict[str, t.Any]:
|
|
980
|
+
return {
|
|
981
|
+
"name": self.name,
|
|
982
|
+
"params": [param.to_info_dict() for param in self.get_params(ctx)],
|
|
983
|
+
"help": self.help,
|
|
984
|
+
"epilog": self.epilog,
|
|
985
|
+
"short_help": self.short_help,
|
|
986
|
+
"hidden": self.hidden,
|
|
987
|
+
"deprecated": self.deprecated,
|
|
988
|
+
}
|
|
989
|
+
|
|
990
|
+
def __repr__(self) -> str:
|
|
991
|
+
return f"<{self.__class__.__name__} {self.name}>"
|
|
992
|
+
|
|
993
|
+
def get_usage(self, ctx: Context) -> str:
|
|
994
|
+
"""Formats the usage line into a string and returns it.
|
|
995
|
+
|
|
996
|
+
Calls :meth:`format_usage` internally.
|
|
997
|
+
"""
|
|
998
|
+
formatter = ctx.make_formatter()
|
|
999
|
+
self.format_usage(ctx, formatter)
|
|
1000
|
+
return formatter.getvalue().rstrip("\n")
|
|
1001
|
+
|
|
1002
|
+
def get_params(self, ctx: Context) -> list[Parameter]:
|
|
1003
|
+
params = self.params
|
|
1004
|
+
help_option = self.get_help_option(ctx)
|
|
1005
|
+
|
|
1006
|
+
if help_option is not None:
|
|
1007
|
+
params = [*params, help_option]
|
|
1008
|
+
|
|
1009
|
+
if __debug__:
|
|
1010
|
+
import warnings
|
|
1011
|
+
|
|
1012
|
+
opts = [opt for param in params for opt in param.opts]
|
|
1013
|
+
opts_counter = Counter(opts)
|
|
1014
|
+
duplicate_opts = (opt for opt, count in opts_counter.items() if count > 1)
|
|
1015
|
+
|
|
1016
|
+
for duplicate_opt in duplicate_opts:
|
|
1017
|
+
warnings.warn(
|
|
1018
|
+
(
|
|
1019
|
+
f"The parameter {duplicate_opt} is used more than once. "
|
|
1020
|
+
"Remove its duplicate as parameters should be unique."
|
|
1021
|
+
),
|
|
1022
|
+
stacklevel=3,
|
|
1023
|
+
)
|
|
1024
|
+
|
|
1025
|
+
return params
|
|
1026
|
+
|
|
1027
|
+
def format_usage(self, ctx: Context, formatter: HelpFormatter) -> None:
|
|
1028
|
+
"""Writes the usage line into the formatter.
|
|
1029
|
+
|
|
1030
|
+
This is a low-level method called by :meth:`get_usage`.
|
|
1031
|
+
"""
|
|
1032
|
+
pieces = self.collect_usage_pieces(ctx)
|
|
1033
|
+
formatter.write_usage(ctx.command_path, " ".join(pieces))
|
|
1034
|
+
|
|
1035
|
+
def collect_usage_pieces(self, ctx: Context) -> list[str]:
|
|
1036
|
+
"""Returns all the pieces that go into the usage line and returns
|
|
1037
|
+
it as a list of strings.
|
|
1038
|
+
"""
|
|
1039
|
+
rv = [self.options_metavar] if self.options_metavar else []
|
|
1040
|
+
|
|
1041
|
+
for param in self.get_params(ctx):
|
|
1042
|
+
rv.extend(param.get_usage_pieces(ctx))
|
|
1043
|
+
|
|
1044
|
+
return rv
|
|
1045
|
+
|
|
1046
|
+
def get_help_option_names(self, ctx: Context) -> list[str]:
|
|
1047
|
+
"""Returns the names for the help option."""
|
|
1048
|
+
all_names = set(ctx.help_option_names)
|
|
1049
|
+
for param in self.params:
|
|
1050
|
+
all_names.difference_update(param.opts)
|
|
1051
|
+
all_names.difference_update(param.secondary_opts)
|
|
1052
|
+
return list(all_names)
|
|
1053
|
+
|
|
1054
|
+
def get_help_option(self, ctx: Context) -> Option | None:
|
|
1055
|
+
"""Returns the help option object.
|
|
1056
|
+
|
|
1057
|
+
Skipped if :attr:`add_help_option` is ``False``.
|
|
1058
|
+
|
|
1059
|
+
.. versionchanged:: 8.1.8
|
|
1060
|
+
The help option is now cached to avoid creating it multiple times.
|
|
1061
|
+
"""
|
|
1062
|
+
help_option_names = self.get_help_option_names(ctx)
|
|
1063
|
+
|
|
1064
|
+
if not help_option_names or not self.add_help_option:
|
|
1065
|
+
return None
|
|
1066
|
+
|
|
1067
|
+
# Cache the help option object in private _help_option attribute to
|
|
1068
|
+
# avoid creating it multiple times. Not doing this will break the
|
|
1069
|
+
# callback odering by iter_params_for_processing(), which relies on
|
|
1070
|
+
# object comparison.
|
|
1071
|
+
if self._help_option is None:
|
|
1072
|
+
# Avoid circular import.
|
|
1073
|
+
from .decorators import help_option
|
|
1074
|
+
|
|
1075
|
+
# Apply help_option decorator and pop resulting option
|
|
1076
|
+
help_option(*help_option_names)(self)
|
|
1077
|
+
self._help_option = self.params.pop() # type: ignore[assignment]
|
|
1078
|
+
|
|
1079
|
+
return self._help_option
|
|
1080
|
+
|
|
1081
|
+
def make_parser(self, ctx: Context) -> _OptionParser:
|
|
1082
|
+
"""Creates the underlying option parser for this command."""
|
|
1083
|
+
parser = _OptionParser(ctx)
|
|
1084
|
+
for param in self.get_params(ctx):
|
|
1085
|
+
param.add_to_parser(parser, ctx)
|
|
1086
|
+
return parser
|
|
1087
|
+
|
|
1088
|
+
def get_help(self, ctx: Context) -> str:
|
|
1089
|
+
"""Formats the help into a string and returns it.
|
|
1090
|
+
|
|
1091
|
+
Calls :meth:`format_help` internally.
|
|
1092
|
+
"""
|
|
1093
|
+
formatter = ctx.make_formatter()
|
|
1094
|
+
self.format_help(ctx, formatter)
|
|
1095
|
+
return formatter.getvalue().rstrip("\n")
|
|
1096
|
+
|
|
1097
|
+
def get_short_help_str(self, limit: int = 45) -> str:
|
|
1098
|
+
"""Gets short help for the command or makes it by shortening the
|
|
1099
|
+
long help string.
|
|
1100
|
+
"""
|
|
1101
|
+
if self.short_help:
|
|
1102
|
+
text = inspect.cleandoc(self.short_help)
|
|
1103
|
+
elif self.help:
|
|
1104
|
+
text = make_default_short_help(self.help, limit)
|
|
1105
|
+
else:
|
|
1106
|
+
text = ""
|
|
1107
|
+
|
|
1108
|
+
if self.deprecated:
|
|
1109
|
+
deprecated_message = (
|
|
1110
|
+
f"(DEPRECATED: {self.deprecated})"
|
|
1111
|
+
if isinstance(self.deprecated, str)
|
|
1112
|
+
else "(DEPRECATED)"
|
|
1113
|
+
)
|
|
1114
|
+
text = _("{text} {deprecated_message}").format(
|
|
1115
|
+
text=text, deprecated_message=deprecated_message
|
|
1116
|
+
)
|
|
1117
|
+
|
|
1118
|
+
return text.strip()
|
|
1119
|
+
|
|
1120
|
+
def format_help(self, ctx: Context, formatter: HelpFormatter) -> None:
|
|
1121
|
+
"""Writes the help into the formatter if it exists.
|
|
1122
|
+
|
|
1123
|
+
This is a low-level method called by :meth:`get_help`.
|
|
1124
|
+
|
|
1125
|
+
This calls the following methods:
|
|
1126
|
+
|
|
1127
|
+
- :meth:`format_usage`
|
|
1128
|
+
- :meth:`format_help_text`
|
|
1129
|
+
- :meth:`format_options`
|
|
1130
|
+
- :meth:`format_epilog`
|
|
1131
|
+
"""
|
|
1132
|
+
self.format_usage(ctx, formatter)
|
|
1133
|
+
self.format_help_text(ctx, formatter)
|
|
1134
|
+
self.format_options(ctx, formatter)
|
|
1135
|
+
self.format_epilog(ctx, formatter)
|
|
1136
|
+
|
|
1137
|
+
def format_help_text(self, ctx: Context, formatter: HelpFormatter) -> None:
|
|
1138
|
+
"""Writes the help text to the formatter if it exists."""
|
|
1139
|
+
if self.help is not None:
|
|
1140
|
+
# truncate the help text to the first form feed
|
|
1141
|
+
text = inspect.cleandoc(self.help).partition("\f")[0]
|
|
1142
|
+
else:
|
|
1143
|
+
text = ""
|
|
1144
|
+
|
|
1145
|
+
if self.deprecated:
|
|
1146
|
+
deprecated_message = (
|
|
1147
|
+
f"(DEPRECATED: {self.deprecated})"
|
|
1148
|
+
if isinstance(self.deprecated, str)
|
|
1149
|
+
else "(DEPRECATED)"
|
|
1150
|
+
)
|
|
1151
|
+
text = _("{text} {deprecated_message}").format(
|
|
1152
|
+
text=text, deprecated_message=deprecated_message
|
|
1153
|
+
)
|
|
1154
|
+
|
|
1155
|
+
if text:
|
|
1156
|
+
formatter.write_paragraph()
|
|
1157
|
+
|
|
1158
|
+
with formatter.indentation():
|
|
1159
|
+
formatter.write_text(text)
|
|
1160
|
+
|
|
1161
|
+
def format_options(self, ctx: Context, formatter: HelpFormatter) -> None:
|
|
1162
|
+
"""Writes all the options into the formatter if they exist."""
|
|
1163
|
+
opts = []
|
|
1164
|
+
for param in self.get_params(ctx):
|
|
1165
|
+
rv = param.get_help_record(ctx)
|
|
1166
|
+
if rv is not None:
|
|
1167
|
+
opts.append(rv)
|
|
1168
|
+
|
|
1169
|
+
if opts:
|
|
1170
|
+
with formatter.section(_("Options")):
|
|
1171
|
+
formatter.write_dl(opts)
|
|
1172
|
+
|
|
1173
|
+
def format_epilog(self, ctx: Context, formatter: HelpFormatter) -> None:
|
|
1174
|
+
"""Writes the epilog into the formatter if it exists."""
|
|
1175
|
+
if self.epilog:
|
|
1176
|
+
epilog = inspect.cleandoc(self.epilog)
|
|
1177
|
+
formatter.write_paragraph()
|
|
1178
|
+
|
|
1179
|
+
with formatter.indentation():
|
|
1180
|
+
formatter.write_text(epilog)
|
|
1181
|
+
|
|
1182
|
+
def make_context(
|
|
1183
|
+
self,
|
|
1184
|
+
info_name: str | None,
|
|
1185
|
+
args: list[str],
|
|
1186
|
+
parent: Context | None = None,
|
|
1187
|
+
**extra: t.Any,
|
|
1188
|
+
) -> Context:
|
|
1189
|
+
"""This function when given an info name and arguments will kick
|
|
1190
|
+
off the parsing and create a new :class:`Context`. It does not
|
|
1191
|
+
invoke the actual command callback though.
|
|
1192
|
+
|
|
1193
|
+
To quickly customize the context class used without overriding
|
|
1194
|
+
this method, set the :attr:`context_class` attribute.
|
|
1195
|
+
|
|
1196
|
+
:param info_name: the info name for this invocation. Generally this
|
|
1197
|
+
is the most descriptive name for the script or
|
|
1198
|
+
command. For the toplevel script it's usually
|
|
1199
|
+
the name of the script, for commands below it's
|
|
1200
|
+
the name of the command.
|
|
1201
|
+
:param args: the arguments to parse as list of strings.
|
|
1202
|
+
:param parent: the parent context if available.
|
|
1203
|
+
:param extra: extra keyword arguments forwarded to the context
|
|
1204
|
+
constructor.
|
|
1205
|
+
|
|
1206
|
+
.. versionchanged:: 8.0
|
|
1207
|
+
Added the :attr:`context_class` attribute.
|
|
1208
|
+
"""
|
|
1209
|
+
for key, value in self.context_settings.items():
|
|
1210
|
+
if key not in extra:
|
|
1211
|
+
extra[key] = value
|
|
1212
|
+
|
|
1213
|
+
ctx = self.context_class(self, info_name=info_name, parent=parent, **extra)
|
|
1214
|
+
|
|
1215
|
+
with ctx.scope(cleanup=False):
|
|
1216
|
+
self.parse_args(ctx, args)
|
|
1217
|
+
return ctx
|
|
1218
|
+
|
|
1219
|
+
def parse_args(self, ctx: Context, args: list[str]) -> list[str]:
|
|
1220
|
+
if not args and self.no_args_is_help and not ctx.resilient_parsing:
|
|
1221
|
+
raise NoArgsIsHelpError(ctx)
|
|
1222
|
+
|
|
1223
|
+
parser = self.make_parser(ctx)
|
|
1224
|
+
opts, args, param_order = parser.parse_args(args=args)
|
|
1225
|
+
|
|
1226
|
+
for param in iter_params_for_processing(param_order, self.get_params(ctx)):
|
|
1227
|
+
_, args = param.handle_parse_result(ctx, opts, args)
|
|
1228
|
+
|
|
1229
|
+
# We now have all parameters' values into `ctx.params`, but the data may contain
|
|
1230
|
+
# the `UNSET` sentinel.
|
|
1231
|
+
# Convert `UNSET` to `None` to ensure that the user doesn't see `UNSET`.
|
|
1232
|
+
#
|
|
1233
|
+
# Waiting until after the initial parse to convert allows us to treat `UNSET`
|
|
1234
|
+
# more like a missing value when multiple params use the same name.
|
|
1235
|
+
# Refs:
|
|
1236
|
+
# https://github.com/pallets/click/issues/3071
|
|
1237
|
+
# https://github.com/pallets/click/pull/3079
|
|
1238
|
+
for name, value in ctx.params.items():
|
|
1239
|
+
if value is UNSET:
|
|
1240
|
+
ctx.params[name] = None
|
|
1241
|
+
|
|
1242
|
+
if args and not ctx.allow_extra_args and not ctx.resilient_parsing:
|
|
1243
|
+
ctx.fail(
|
|
1244
|
+
ngettext(
|
|
1245
|
+
"Got unexpected extra argument ({args})",
|
|
1246
|
+
"Got unexpected extra arguments ({args})",
|
|
1247
|
+
len(args),
|
|
1248
|
+
).format(args=" ".join(map(str, args)))
|
|
1249
|
+
)
|
|
1250
|
+
|
|
1251
|
+
ctx.args = args
|
|
1252
|
+
ctx._opt_prefixes.update(parser._opt_prefixes)
|
|
1253
|
+
return args
|
|
1254
|
+
|
|
1255
|
+
def invoke(self, ctx: Context) -> t.Any:
|
|
1256
|
+
"""Given a context, this invokes the attached callback (if it exists)
|
|
1257
|
+
in the right way.
|
|
1258
|
+
"""
|
|
1259
|
+
if self.deprecated:
|
|
1260
|
+
extra_message = (
|
|
1261
|
+
f" {self.deprecated}" if isinstance(self.deprecated, str) else ""
|
|
1262
|
+
)
|
|
1263
|
+
message = _(
|
|
1264
|
+
"DeprecationWarning: The command {name!r} is deprecated.{extra_message}"
|
|
1265
|
+
).format(name=self.name, extra_message=extra_message)
|
|
1266
|
+
echo(style(message, fg="red"), err=True)
|
|
1267
|
+
|
|
1268
|
+
if self.callback is not None:
|
|
1269
|
+
return ctx.invoke(self.callback, **ctx.params)
|
|
1270
|
+
|
|
1271
|
+
def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]:
|
|
1272
|
+
"""Return a list of completions for the incomplete value. Looks
|
|
1273
|
+
at the names of options and chained multi-commands.
|
|
1274
|
+
|
|
1275
|
+
Any command could be part of a chained multi-command, so sibling
|
|
1276
|
+
commands are valid at any point during command completion.
|
|
1277
|
+
|
|
1278
|
+
:param ctx: Invocation context for this command.
|
|
1279
|
+
:param incomplete: Value being completed. May be empty.
|
|
1280
|
+
|
|
1281
|
+
.. versionadded:: 8.0
|
|
1282
|
+
"""
|
|
1283
|
+
from pipenv.vendor.click.shell_completion import CompletionItem
|
|
1284
|
+
|
|
1285
|
+
results: list[CompletionItem] = []
|
|
1286
|
+
|
|
1287
|
+
if incomplete and not incomplete[0].isalnum():
|
|
1288
|
+
for param in self.get_params(ctx):
|
|
1289
|
+
if (
|
|
1290
|
+
not isinstance(param, Option)
|
|
1291
|
+
or param.hidden
|
|
1292
|
+
or (
|
|
1293
|
+
not param.multiple
|
|
1294
|
+
and ctx.get_parameter_source(param.name) # type: ignore
|
|
1295
|
+
is ParameterSource.COMMANDLINE
|
|
1296
|
+
)
|
|
1297
|
+
):
|
|
1298
|
+
continue
|
|
1299
|
+
|
|
1300
|
+
results.extend(
|
|
1301
|
+
CompletionItem(name, help=param.help)
|
|
1302
|
+
for name in [*param.opts, *param.secondary_opts]
|
|
1303
|
+
if name.startswith(incomplete)
|
|
1304
|
+
)
|
|
1305
|
+
|
|
1306
|
+
while ctx.parent is not None:
|
|
1307
|
+
ctx = ctx.parent
|
|
1308
|
+
|
|
1309
|
+
if isinstance(ctx.command, Group) and ctx.command.chain:
|
|
1310
|
+
results.extend(
|
|
1311
|
+
CompletionItem(name, help=command.get_short_help_str())
|
|
1312
|
+
for name, command in _complete_visible_commands(ctx, incomplete)
|
|
1313
|
+
if name not in ctx._protected_args
|
|
1314
|
+
)
|
|
1315
|
+
|
|
1316
|
+
return results
|
|
1317
|
+
|
|
1318
|
+
@t.overload
|
|
1319
|
+
def main(
|
|
1320
|
+
self,
|
|
1321
|
+
args: cabc.Sequence[str] | None = None,
|
|
1322
|
+
prog_name: str | None = None,
|
|
1323
|
+
complete_var: str | None = None,
|
|
1324
|
+
standalone_mode: t.Literal[True] = True,
|
|
1325
|
+
**extra: t.Any,
|
|
1326
|
+
) -> t.NoReturn: ...
|
|
1327
|
+
|
|
1328
|
+
@t.overload
|
|
1329
|
+
def main(
|
|
1330
|
+
self,
|
|
1331
|
+
args: cabc.Sequence[str] | None = None,
|
|
1332
|
+
prog_name: str | None = None,
|
|
1333
|
+
complete_var: str | None = None,
|
|
1334
|
+
standalone_mode: bool = ...,
|
|
1335
|
+
**extra: t.Any,
|
|
1336
|
+
) -> t.Any: ...
|
|
1337
|
+
|
|
1338
|
+
def main(
|
|
1339
|
+
self,
|
|
1340
|
+
args: cabc.Sequence[str] | None = None,
|
|
1341
|
+
prog_name: str | None = None,
|
|
1342
|
+
complete_var: str | None = None,
|
|
1343
|
+
standalone_mode: bool = True,
|
|
1344
|
+
windows_expand_args: bool = True,
|
|
1345
|
+
**extra: t.Any,
|
|
1346
|
+
) -> t.Any:
|
|
1347
|
+
"""This is the way to invoke a script with all the bells and
|
|
1348
|
+
whistles as a command line application. This will always terminate
|
|
1349
|
+
the application after a call. If this is not wanted, ``SystemExit``
|
|
1350
|
+
needs to be caught.
|
|
1351
|
+
|
|
1352
|
+
This method is also available by directly calling the instance of
|
|
1353
|
+
a :class:`Command`.
|
|
1354
|
+
|
|
1355
|
+
:param args: the arguments that should be used for parsing. If not
|
|
1356
|
+
provided, ``sys.argv[1:]`` is used.
|
|
1357
|
+
:param prog_name: the program name that should be used. By default
|
|
1358
|
+
the program name is constructed by taking the file
|
|
1359
|
+
name from ``sys.argv[0]``.
|
|
1360
|
+
:param complete_var: the environment variable that controls the
|
|
1361
|
+
bash completion support. The default is
|
|
1362
|
+
``"_<prog_name>_COMPLETE"`` with prog_name in
|
|
1363
|
+
uppercase.
|
|
1364
|
+
:param standalone_mode: the default behavior is to invoke the script
|
|
1365
|
+
in standalone mode. Click will then
|
|
1366
|
+
handle exceptions and convert them into
|
|
1367
|
+
error messages and the function will never
|
|
1368
|
+
return but shut down the interpreter. If
|
|
1369
|
+
this is set to `False` they will be
|
|
1370
|
+
propagated to the caller and the return
|
|
1371
|
+
value of this function is the return value
|
|
1372
|
+
of :meth:`invoke`.
|
|
1373
|
+
:param windows_expand_args: Expand glob patterns, user dir, and
|
|
1374
|
+
env vars in command line args on Windows.
|
|
1375
|
+
:param extra: extra keyword arguments are forwarded to the context
|
|
1376
|
+
constructor. See :class:`Context` for more information.
|
|
1377
|
+
|
|
1378
|
+
.. versionchanged:: 8.0.1
|
|
1379
|
+
Added the ``windows_expand_args`` parameter to allow
|
|
1380
|
+
disabling command line arg expansion on Windows.
|
|
1381
|
+
|
|
1382
|
+
.. versionchanged:: 8.0
|
|
1383
|
+
When taking arguments from ``sys.argv`` on Windows, glob
|
|
1384
|
+
patterns, user dir, and env vars are expanded.
|
|
1385
|
+
|
|
1386
|
+
.. versionchanged:: 3.0
|
|
1387
|
+
Added the ``standalone_mode`` parameter.
|
|
1388
|
+
"""
|
|
1389
|
+
if args is None:
|
|
1390
|
+
args = sys.argv[1:]
|
|
1391
|
+
|
|
1392
|
+
if os.name == "nt" and windows_expand_args:
|
|
1393
|
+
args = _expand_args(args)
|
|
1394
|
+
else:
|
|
1395
|
+
args = list(args)
|
|
1396
|
+
|
|
1397
|
+
if prog_name is None:
|
|
1398
|
+
prog_name = _detect_program_name()
|
|
1399
|
+
|
|
1400
|
+
# Process shell completion requests and exit early.
|
|
1401
|
+
self._main_shell_completion(extra, prog_name, complete_var)
|
|
1402
|
+
|
|
1403
|
+
try:
|
|
1404
|
+
try:
|
|
1405
|
+
with self.make_context(prog_name, args, **extra) as ctx:
|
|
1406
|
+
rv = self.invoke(ctx)
|
|
1407
|
+
if not standalone_mode:
|
|
1408
|
+
return rv
|
|
1409
|
+
# it's not safe to `ctx.exit(rv)` here!
|
|
1410
|
+
# note that `rv` may actually contain data like "1" which
|
|
1411
|
+
# has obvious effects
|
|
1412
|
+
# more subtle case: `rv=[None, None]` can come out of
|
|
1413
|
+
# chained commands which all returned `None` -- so it's not
|
|
1414
|
+
# even always obvious that `rv` indicates success/failure
|
|
1415
|
+
# by its truthiness/falsiness
|
|
1416
|
+
ctx.exit()
|
|
1417
|
+
except (EOFError, KeyboardInterrupt) as e:
|
|
1418
|
+
echo(file=sys.stderr)
|
|
1419
|
+
raise Abort() from e
|
|
1420
|
+
except ClickException as e:
|
|
1421
|
+
if not standalone_mode:
|
|
1422
|
+
raise
|
|
1423
|
+
e.show()
|
|
1424
|
+
sys.exit(e.exit_code)
|
|
1425
|
+
except OSError as e:
|
|
1426
|
+
if e.errno == errno.EPIPE:
|
|
1427
|
+
sys.stdout = t.cast(t.TextIO, PacifyFlushWrapper(sys.stdout))
|
|
1428
|
+
sys.stderr = t.cast(t.TextIO, PacifyFlushWrapper(sys.stderr))
|
|
1429
|
+
sys.exit(1)
|
|
1430
|
+
else:
|
|
1431
|
+
raise
|
|
1432
|
+
except Exit as e:
|
|
1433
|
+
if standalone_mode:
|
|
1434
|
+
sys.exit(e.exit_code)
|
|
1435
|
+
else:
|
|
1436
|
+
# in non-standalone mode, return the exit code
|
|
1437
|
+
# note that this is only reached if `self.invoke` above raises
|
|
1438
|
+
# an Exit explicitly -- thus bypassing the check there which
|
|
1439
|
+
# would return its result
|
|
1440
|
+
# the results of non-standalone execution may therefore be
|
|
1441
|
+
# somewhat ambiguous: if there are codepaths which lead to
|
|
1442
|
+
# `ctx.exit(1)` and to `return 1`, the caller won't be able to
|
|
1443
|
+
# tell the difference between the two
|
|
1444
|
+
return e.exit_code
|
|
1445
|
+
except Abort:
|
|
1446
|
+
if not standalone_mode:
|
|
1447
|
+
raise
|
|
1448
|
+
echo(_("Aborted!"), file=sys.stderr)
|
|
1449
|
+
sys.exit(1)
|
|
1450
|
+
|
|
1451
|
+
def _main_shell_completion(
|
|
1452
|
+
self,
|
|
1453
|
+
ctx_args: cabc.MutableMapping[str, t.Any],
|
|
1454
|
+
prog_name: str,
|
|
1455
|
+
complete_var: str | None = None,
|
|
1456
|
+
) -> None:
|
|
1457
|
+
"""Check if the shell is asking for tab completion, process
|
|
1458
|
+
that, then exit early. Called from :meth:`main` before the
|
|
1459
|
+
program is invoked.
|
|
1460
|
+
|
|
1461
|
+
:param prog_name: Name of the executable in the shell.
|
|
1462
|
+
:param complete_var: Name of the environment variable that holds
|
|
1463
|
+
the completion instruction. Defaults to
|
|
1464
|
+
``_{PROG_NAME}_COMPLETE``.
|
|
1465
|
+
|
|
1466
|
+
.. versionchanged:: 8.2.0
|
|
1467
|
+
Dots (``.``) in ``prog_name`` are replaced with underscores (``_``).
|
|
1468
|
+
"""
|
|
1469
|
+
if complete_var is None:
|
|
1470
|
+
complete_name = prog_name.replace("-", "_").replace(".", "_")
|
|
1471
|
+
complete_var = f"_{complete_name}_COMPLETE".upper()
|
|
1472
|
+
|
|
1473
|
+
instruction = os.environ.get(complete_var)
|
|
1474
|
+
|
|
1475
|
+
if not instruction:
|
|
1476
|
+
return
|
|
1477
|
+
|
|
1478
|
+
from .shell_completion import shell_complete
|
|
1479
|
+
|
|
1480
|
+
rv = shell_complete(self, ctx_args, prog_name, complete_var, instruction)
|
|
1481
|
+
sys.exit(rv)
|
|
1482
|
+
|
|
1483
|
+
def __call__(self, *args: t.Any, **kwargs: t.Any) -> t.Any:
|
|
1484
|
+
"""Alias for :meth:`main`."""
|
|
1485
|
+
return self.main(*args, **kwargs)
|
|
1486
|
+
|
|
1487
|
+
|
|
1488
|
+
class _FakeSubclassCheck(type):
|
|
1489
|
+
def __subclasscheck__(cls, subclass: type) -> bool:
|
|
1490
|
+
return issubclass(subclass, cls.__bases__[0])
|
|
1491
|
+
|
|
1492
|
+
def __instancecheck__(cls, instance: t.Any) -> bool:
|
|
1493
|
+
return isinstance(instance, cls.__bases__[0])
|
|
1494
|
+
|
|
1495
|
+
|
|
1496
|
+
class _BaseCommand(Command, metaclass=_FakeSubclassCheck):
|
|
1497
|
+
"""
|
|
1498
|
+
.. deprecated:: 8.2
|
|
1499
|
+
Will be removed in Click 9.0. Use ``Command`` instead.
|
|
1500
|
+
"""
|
|
1501
|
+
|
|
1502
|
+
|
|
1503
|
+
class Group(Command):
|
|
1504
|
+
"""A group is a command that nests other commands (or more groups).
|
|
1505
|
+
|
|
1506
|
+
:param name: The name of the group command.
|
|
1507
|
+
:param commands: Map names to :class:`Command` objects. Can be a list, which
|
|
1508
|
+
will use :attr:`Command.name` as the keys.
|
|
1509
|
+
:param invoke_without_command: Invoke the group's callback even if a
|
|
1510
|
+
subcommand is not given.
|
|
1511
|
+
:param no_args_is_help: If no arguments are given, show the group's help and
|
|
1512
|
+
exit. Defaults to the opposite of ``invoke_without_command``.
|
|
1513
|
+
:param subcommand_metavar: How to represent the subcommand argument in help.
|
|
1514
|
+
The default will represent whether ``chain`` is set or not.
|
|
1515
|
+
:param chain: Allow passing more than one subcommand argument. After parsing
|
|
1516
|
+
a command's arguments, if any arguments remain another command will be
|
|
1517
|
+
matched, and so on.
|
|
1518
|
+
:param result_callback: A function to call after the group's and
|
|
1519
|
+
subcommand's callbacks. The value returned by the subcommand is passed.
|
|
1520
|
+
If ``chain`` is enabled, the value will be a list of values returned by
|
|
1521
|
+
all the commands. If ``invoke_without_command`` is enabled, the value
|
|
1522
|
+
will be the value returned by the group's callback, or an empty list if
|
|
1523
|
+
``chain`` is enabled.
|
|
1524
|
+
:param kwargs: Other arguments passed to :class:`Command`.
|
|
1525
|
+
|
|
1526
|
+
.. versionchanged:: 8.0
|
|
1527
|
+
The ``commands`` argument can be a list of command objects.
|
|
1528
|
+
|
|
1529
|
+
.. versionchanged:: 8.2
|
|
1530
|
+
Merged with and replaces the ``MultiCommand`` base class.
|
|
1531
|
+
"""
|
|
1532
|
+
|
|
1533
|
+
allow_extra_args = True
|
|
1534
|
+
allow_interspersed_args = False
|
|
1535
|
+
|
|
1536
|
+
#: If set, this is used by the group's :meth:`command` decorator
|
|
1537
|
+
#: as the default :class:`Command` class. This is useful to make all
|
|
1538
|
+
#: subcommands use a custom command class.
|
|
1539
|
+
#:
|
|
1540
|
+
#: .. versionadded:: 8.0
|
|
1541
|
+
command_class: type[Command] | None = None
|
|
1542
|
+
|
|
1543
|
+
#: If set, this is used by the group's :meth:`group` decorator
|
|
1544
|
+
#: as the default :class:`Group` class. This is useful to make all
|
|
1545
|
+
#: subgroups use a custom group class.
|
|
1546
|
+
#:
|
|
1547
|
+
#: If set to the special value :class:`type` (literally
|
|
1548
|
+
#: ``group_class = type``), this group's class will be used as the
|
|
1549
|
+
#: default class. This makes a custom group class continue to make
|
|
1550
|
+
#: custom groups.
|
|
1551
|
+
#:
|
|
1552
|
+
#: .. versionadded:: 8.0
|
|
1553
|
+
group_class: type[Group] | type[type] | None = None
|
|
1554
|
+
# Literal[type] isn't valid, so use Type[type]
|
|
1555
|
+
|
|
1556
|
+
def __init__(
|
|
1557
|
+
self,
|
|
1558
|
+
name: str | None = None,
|
|
1559
|
+
commands: cabc.MutableMapping[str, Command]
|
|
1560
|
+
| cabc.Sequence[Command]
|
|
1561
|
+
| None = None,
|
|
1562
|
+
invoke_without_command: bool = False,
|
|
1563
|
+
no_args_is_help: bool | None = None,
|
|
1564
|
+
subcommand_metavar: str | None = None,
|
|
1565
|
+
chain: bool = False,
|
|
1566
|
+
result_callback: t.Callable[..., t.Any] | None = None,
|
|
1567
|
+
**kwargs: t.Any,
|
|
1568
|
+
) -> None:
|
|
1569
|
+
super().__init__(name, **kwargs)
|
|
1570
|
+
|
|
1571
|
+
if commands is None:
|
|
1572
|
+
commands = {}
|
|
1573
|
+
elif isinstance(commands, abc.Sequence):
|
|
1574
|
+
commands = {c.name: c for c in commands if c.name is not None}
|
|
1575
|
+
|
|
1576
|
+
#: The registered subcommands by their exported names.
|
|
1577
|
+
self.commands: cabc.MutableMapping[str, Command] = commands
|
|
1578
|
+
|
|
1579
|
+
if no_args_is_help is None:
|
|
1580
|
+
no_args_is_help = not invoke_without_command
|
|
1581
|
+
|
|
1582
|
+
self.no_args_is_help = no_args_is_help
|
|
1583
|
+
self.invoke_without_command = invoke_without_command
|
|
1584
|
+
|
|
1585
|
+
if subcommand_metavar is None:
|
|
1586
|
+
if chain:
|
|
1587
|
+
subcommand_metavar = "COMMAND1 [ARGS]... [COMMAND2 [ARGS]...]..."
|
|
1588
|
+
else:
|
|
1589
|
+
subcommand_metavar = "COMMAND [ARGS]..."
|
|
1590
|
+
|
|
1591
|
+
self.subcommand_metavar = subcommand_metavar
|
|
1592
|
+
self.chain = chain
|
|
1593
|
+
# The result callback that is stored. This can be set or
|
|
1594
|
+
# overridden with the :func:`result_callback` decorator.
|
|
1595
|
+
self._result_callback = result_callback
|
|
1596
|
+
|
|
1597
|
+
if self.chain:
|
|
1598
|
+
for param in self.params:
|
|
1599
|
+
if isinstance(param, Argument) and not param.required:
|
|
1600
|
+
raise RuntimeError(
|
|
1601
|
+
"A group in chain mode cannot have optional arguments."
|
|
1602
|
+
)
|
|
1603
|
+
|
|
1604
|
+
def to_info_dict(self, ctx: Context) -> dict[str, t.Any]:
|
|
1605
|
+
info_dict = super().to_info_dict(ctx)
|
|
1606
|
+
commands = {}
|
|
1607
|
+
|
|
1608
|
+
for name in self.list_commands(ctx):
|
|
1609
|
+
command = self.get_command(ctx, name)
|
|
1610
|
+
|
|
1611
|
+
if command is None:
|
|
1612
|
+
continue
|
|
1613
|
+
|
|
1614
|
+
sub_ctx = ctx._make_sub_context(command)
|
|
1615
|
+
|
|
1616
|
+
with sub_ctx.scope(cleanup=False):
|
|
1617
|
+
commands[name] = command.to_info_dict(sub_ctx)
|
|
1618
|
+
|
|
1619
|
+
info_dict.update(commands=commands, chain=self.chain)
|
|
1620
|
+
return info_dict
|
|
1621
|
+
|
|
1622
|
+
def add_command(self, cmd: Command, name: str | None = None) -> None:
|
|
1623
|
+
"""Registers another :class:`Command` with this group. If the name
|
|
1624
|
+
is not provided, the name of the command is used.
|
|
1625
|
+
"""
|
|
1626
|
+
name = name or cmd.name
|
|
1627
|
+
if name is None:
|
|
1628
|
+
raise TypeError("Command has no name.")
|
|
1629
|
+
_check_nested_chain(self, name, cmd, register=True)
|
|
1630
|
+
self.commands[name] = cmd
|
|
1631
|
+
|
|
1632
|
+
@t.overload
|
|
1633
|
+
def command(self, __func: t.Callable[..., t.Any]) -> Command: ...
|
|
1634
|
+
|
|
1635
|
+
@t.overload
|
|
1636
|
+
def command(
|
|
1637
|
+
self, *args: t.Any, **kwargs: t.Any
|
|
1638
|
+
) -> t.Callable[[t.Callable[..., t.Any]], Command]: ...
|
|
1639
|
+
|
|
1640
|
+
def command(
|
|
1641
|
+
self, *args: t.Any, **kwargs: t.Any
|
|
1642
|
+
) -> t.Callable[[t.Callable[..., t.Any]], Command] | Command:
|
|
1643
|
+
"""A shortcut decorator for declaring and attaching a command to
|
|
1644
|
+
the group. This takes the same arguments as :func:`command` and
|
|
1645
|
+
immediately registers the created command with this group by
|
|
1646
|
+
calling :meth:`add_command`.
|
|
1647
|
+
|
|
1648
|
+
To customize the command class used, set the
|
|
1649
|
+
:attr:`command_class` attribute.
|
|
1650
|
+
|
|
1651
|
+
.. versionchanged:: 8.1
|
|
1652
|
+
This decorator can be applied without parentheses.
|
|
1653
|
+
|
|
1654
|
+
.. versionchanged:: 8.0
|
|
1655
|
+
Added the :attr:`command_class` attribute.
|
|
1656
|
+
"""
|
|
1657
|
+
from .decorators import command
|
|
1658
|
+
|
|
1659
|
+
func: t.Callable[..., t.Any] | None = None
|
|
1660
|
+
|
|
1661
|
+
if args and callable(args[0]):
|
|
1662
|
+
assert len(args) == 1 and not kwargs, (
|
|
1663
|
+
"Use 'command(**kwargs)(callable)' to provide arguments."
|
|
1664
|
+
)
|
|
1665
|
+
(func,) = args
|
|
1666
|
+
args = ()
|
|
1667
|
+
|
|
1668
|
+
if self.command_class and kwargs.get("cls") is None:
|
|
1669
|
+
kwargs["cls"] = self.command_class
|
|
1670
|
+
|
|
1671
|
+
def decorator(f: t.Callable[..., t.Any]) -> Command:
|
|
1672
|
+
cmd: Command = command(*args, **kwargs)(f)
|
|
1673
|
+
self.add_command(cmd)
|
|
1674
|
+
return cmd
|
|
1675
|
+
|
|
1676
|
+
if func is not None:
|
|
1677
|
+
return decorator(func)
|
|
1678
|
+
|
|
1679
|
+
return decorator
|
|
1680
|
+
|
|
1681
|
+
@t.overload
|
|
1682
|
+
def group(self, __func: t.Callable[..., t.Any]) -> Group: ...
|
|
1683
|
+
|
|
1684
|
+
@t.overload
|
|
1685
|
+
def group(
|
|
1686
|
+
self, *args: t.Any, **kwargs: t.Any
|
|
1687
|
+
) -> t.Callable[[t.Callable[..., t.Any]], Group]: ...
|
|
1688
|
+
|
|
1689
|
+
def group(
|
|
1690
|
+
self, *args: t.Any, **kwargs: t.Any
|
|
1691
|
+
) -> t.Callable[[t.Callable[..., t.Any]], Group] | Group:
|
|
1692
|
+
"""A shortcut decorator for declaring and attaching a group to
|
|
1693
|
+
the group. This takes the same arguments as :func:`group` and
|
|
1694
|
+
immediately registers the created group with this group by
|
|
1695
|
+
calling :meth:`add_command`.
|
|
1696
|
+
|
|
1697
|
+
To customize the group class used, set the :attr:`group_class`
|
|
1698
|
+
attribute.
|
|
1699
|
+
|
|
1700
|
+
.. versionchanged:: 8.1
|
|
1701
|
+
This decorator can be applied without parentheses.
|
|
1702
|
+
|
|
1703
|
+
.. versionchanged:: 8.0
|
|
1704
|
+
Added the :attr:`group_class` attribute.
|
|
1705
|
+
"""
|
|
1706
|
+
from .decorators import group
|
|
1707
|
+
|
|
1708
|
+
func: t.Callable[..., t.Any] | None = None
|
|
1709
|
+
|
|
1710
|
+
if args and callable(args[0]):
|
|
1711
|
+
assert len(args) == 1 and not kwargs, (
|
|
1712
|
+
"Use 'group(**kwargs)(callable)' to provide arguments."
|
|
1713
|
+
)
|
|
1714
|
+
(func,) = args
|
|
1715
|
+
args = ()
|
|
1716
|
+
|
|
1717
|
+
if self.group_class is not None and kwargs.get("cls") is None:
|
|
1718
|
+
if self.group_class is type:
|
|
1719
|
+
kwargs["cls"] = type(self)
|
|
1720
|
+
else:
|
|
1721
|
+
kwargs["cls"] = self.group_class
|
|
1722
|
+
|
|
1723
|
+
def decorator(f: t.Callable[..., t.Any]) -> Group:
|
|
1724
|
+
cmd: Group = group(*args, **kwargs)(f)
|
|
1725
|
+
self.add_command(cmd)
|
|
1726
|
+
return cmd
|
|
1727
|
+
|
|
1728
|
+
if func is not None:
|
|
1729
|
+
return decorator(func)
|
|
1730
|
+
|
|
1731
|
+
return decorator
|
|
1732
|
+
|
|
1733
|
+
def result_callback(self, replace: bool = False) -> t.Callable[[F], F]:
|
|
1734
|
+
"""Adds a result callback to the command. By default if a
|
|
1735
|
+
result callback is already registered this will chain them but
|
|
1736
|
+
this can be disabled with the `replace` parameter. The result
|
|
1737
|
+
callback is invoked with the return value of the subcommand
|
|
1738
|
+
(or the list of return values from all subcommands if chaining
|
|
1739
|
+
is enabled) as well as the parameters as they would be passed
|
|
1740
|
+
to the main callback.
|
|
1741
|
+
|
|
1742
|
+
Example::
|
|
1743
|
+
|
|
1744
|
+
@click.group()
|
|
1745
|
+
@click.option('-i', '--input', default=23)
|
|
1746
|
+
def cli(input):
|
|
1747
|
+
return 42
|
|
1748
|
+
|
|
1749
|
+
@cli.result_callback()
|
|
1750
|
+
def process_result(result, input):
|
|
1751
|
+
return result + input
|
|
1752
|
+
|
|
1753
|
+
:param replace: if set to `True` an already existing result
|
|
1754
|
+
callback will be removed.
|
|
1755
|
+
|
|
1756
|
+
.. versionchanged:: 8.0
|
|
1757
|
+
Renamed from ``resultcallback``.
|
|
1758
|
+
|
|
1759
|
+
.. versionadded:: 3.0
|
|
1760
|
+
"""
|
|
1761
|
+
|
|
1762
|
+
def decorator(f: F) -> F:
|
|
1763
|
+
old_callback = self._result_callback
|
|
1764
|
+
|
|
1765
|
+
if old_callback is None or replace:
|
|
1766
|
+
self._result_callback = f
|
|
1767
|
+
return f
|
|
1768
|
+
|
|
1769
|
+
def function(value: t.Any, /, *args: t.Any, **kwargs: t.Any) -> t.Any:
|
|
1770
|
+
inner = old_callback(value, *args, **kwargs)
|
|
1771
|
+
return f(inner, *args, **kwargs)
|
|
1772
|
+
|
|
1773
|
+
self._result_callback = rv = update_wrapper(t.cast(F, function), f)
|
|
1774
|
+
return rv # type: ignore[return-value]
|
|
1775
|
+
|
|
1776
|
+
return decorator
|
|
1777
|
+
|
|
1778
|
+
def get_command(self, ctx: Context, cmd_name: str) -> Command | None:
|
|
1779
|
+
"""Given a context and a command name, this returns a :class:`Command`
|
|
1780
|
+
object if it exists or returns ``None``.
|
|
1781
|
+
"""
|
|
1782
|
+
return self.commands.get(cmd_name)
|
|
1783
|
+
|
|
1784
|
+
def list_commands(self, ctx: Context) -> list[str]:
|
|
1785
|
+
"""Returns a list of subcommand names in the order they should appear."""
|
|
1786
|
+
return sorted(self.commands)
|
|
1787
|
+
|
|
1788
|
+
def collect_usage_pieces(self, ctx: Context) -> list[str]:
|
|
1789
|
+
rv = super().collect_usage_pieces(ctx)
|
|
1790
|
+
rv.append(self.subcommand_metavar)
|
|
1791
|
+
return rv
|
|
1792
|
+
|
|
1793
|
+
def format_options(self, ctx: Context, formatter: HelpFormatter) -> None:
|
|
1794
|
+
super().format_options(ctx, formatter)
|
|
1795
|
+
self.format_commands(ctx, formatter)
|
|
1796
|
+
|
|
1797
|
+
def format_commands(self, ctx: Context, formatter: HelpFormatter) -> None:
|
|
1798
|
+
"""Extra format methods for multi methods that adds all the commands
|
|
1799
|
+
after the options.
|
|
1800
|
+
"""
|
|
1801
|
+
commands = []
|
|
1802
|
+
for subcommand in self.list_commands(ctx):
|
|
1803
|
+
cmd = self.get_command(ctx, subcommand)
|
|
1804
|
+
# What is this, the tool lied about a command. Ignore it
|
|
1805
|
+
if cmd is None:
|
|
1806
|
+
continue
|
|
1807
|
+
if cmd.hidden:
|
|
1808
|
+
continue
|
|
1809
|
+
|
|
1810
|
+
commands.append((subcommand, cmd))
|
|
1811
|
+
|
|
1812
|
+
# allow for 3 times the default spacing
|
|
1813
|
+
if len(commands):
|
|
1814
|
+
limit = formatter.width - 6 - max(len(cmd[0]) for cmd in commands)
|
|
1815
|
+
|
|
1816
|
+
rows = []
|
|
1817
|
+
for subcommand, cmd in commands:
|
|
1818
|
+
help = cmd.get_short_help_str(limit)
|
|
1819
|
+
rows.append((subcommand, help))
|
|
1820
|
+
|
|
1821
|
+
if rows:
|
|
1822
|
+
with formatter.section(_("Commands")):
|
|
1823
|
+
formatter.write_dl(rows)
|
|
1824
|
+
|
|
1825
|
+
def parse_args(self, ctx: Context, args: list[str]) -> list[str]:
|
|
1826
|
+
if not args and self.no_args_is_help and not ctx.resilient_parsing:
|
|
1827
|
+
raise NoArgsIsHelpError(ctx)
|
|
1828
|
+
|
|
1829
|
+
rest = super().parse_args(ctx, args)
|
|
1830
|
+
|
|
1831
|
+
if self.chain:
|
|
1832
|
+
ctx._protected_args = rest
|
|
1833
|
+
ctx.args = []
|
|
1834
|
+
elif rest:
|
|
1835
|
+
ctx._protected_args, ctx.args = rest[:1], rest[1:]
|
|
1836
|
+
|
|
1837
|
+
return ctx.args
|
|
1838
|
+
|
|
1839
|
+
def invoke(self, ctx: Context) -> t.Any:
|
|
1840
|
+
def _process_result(value: t.Any) -> t.Any:
|
|
1841
|
+
if self._result_callback is not None:
|
|
1842
|
+
value = ctx.invoke(self._result_callback, value, **ctx.params)
|
|
1843
|
+
return value
|
|
1844
|
+
|
|
1845
|
+
if not ctx._protected_args:
|
|
1846
|
+
if self.invoke_without_command:
|
|
1847
|
+
# No subcommand was invoked, so the result callback is
|
|
1848
|
+
# invoked with the group return value for regular
|
|
1849
|
+
# groups, or an empty list for chained groups.
|
|
1850
|
+
with ctx:
|
|
1851
|
+
rv = super().invoke(ctx)
|
|
1852
|
+
return _process_result([] if self.chain else rv)
|
|
1853
|
+
ctx.fail(_("Missing command."))
|
|
1854
|
+
|
|
1855
|
+
# Fetch args back out
|
|
1856
|
+
args = [*ctx._protected_args, *ctx.args]
|
|
1857
|
+
ctx.args = []
|
|
1858
|
+
ctx._protected_args = []
|
|
1859
|
+
|
|
1860
|
+
# If we're not in chain mode, we only allow the invocation of a
|
|
1861
|
+
# single command but we also inform the current context about the
|
|
1862
|
+
# name of the command to invoke.
|
|
1863
|
+
if not self.chain:
|
|
1864
|
+
# Make sure the context is entered so we do not clean up
|
|
1865
|
+
# resources until the result processor has worked.
|
|
1866
|
+
with ctx:
|
|
1867
|
+
cmd_name, cmd, args = self.resolve_command(ctx, args)
|
|
1868
|
+
assert cmd is not None
|
|
1869
|
+
ctx.invoked_subcommand = cmd_name
|
|
1870
|
+
super().invoke(ctx)
|
|
1871
|
+
sub_ctx = cmd.make_context(cmd_name, args, parent=ctx)
|
|
1872
|
+
with sub_ctx:
|
|
1873
|
+
return _process_result(sub_ctx.command.invoke(sub_ctx))
|
|
1874
|
+
|
|
1875
|
+
# In chain mode we create the contexts step by step, but after the
|
|
1876
|
+
# base command has been invoked. Because at that point we do not
|
|
1877
|
+
# know the subcommands yet, the invoked subcommand attribute is
|
|
1878
|
+
# set to ``*`` to inform the command that subcommands are executed
|
|
1879
|
+
# but nothing else.
|
|
1880
|
+
with ctx:
|
|
1881
|
+
ctx.invoked_subcommand = "*" if args else None
|
|
1882
|
+
super().invoke(ctx)
|
|
1883
|
+
|
|
1884
|
+
# Otherwise we make every single context and invoke them in a
|
|
1885
|
+
# chain. In that case the return value to the result processor
|
|
1886
|
+
# is the list of all invoked subcommand's results.
|
|
1887
|
+
contexts = []
|
|
1888
|
+
while args:
|
|
1889
|
+
cmd_name, cmd, args = self.resolve_command(ctx, args)
|
|
1890
|
+
assert cmd is not None
|
|
1891
|
+
sub_ctx = cmd.make_context(
|
|
1892
|
+
cmd_name,
|
|
1893
|
+
args,
|
|
1894
|
+
parent=ctx,
|
|
1895
|
+
allow_extra_args=True,
|
|
1896
|
+
allow_interspersed_args=False,
|
|
1897
|
+
)
|
|
1898
|
+
contexts.append(sub_ctx)
|
|
1899
|
+
args, sub_ctx.args = sub_ctx.args, []
|
|
1900
|
+
|
|
1901
|
+
rv = []
|
|
1902
|
+
for sub_ctx in contexts:
|
|
1903
|
+
with sub_ctx:
|
|
1904
|
+
rv.append(sub_ctx.command.invoke(sub_ctx))
|
|
1905
|
+
return _process_result(rv)
|
|
1906
|
+
|
|
1907
|
+
def resolve_command(
|
|
1908
|
+
self, ctx: Context, args: list[str]
|
|
1909
|
+
) -> tuple[str | None, Command | None, list[str]]:
|
|
1910
|
+
cmd_name = make_str(args[0])
|
|
1911
|
+
original_cmd_name = cmd_name
|
|
1912
|
+
|
|
1913
|
+
# Get the command
|
|
1914
|
+
cmd = self.get_command(ctx, cmd_name)
|
|
1915
|
+
|
|
1916
|
+
# If we can't find the command but there is a normalization
|
|
1917
|
+
# function available, we try with that one.
|
|
1918
|
+
if cmd is None and ctx.token_normalize_func is not None:
|
|
1919
|
+
cmd_name = ctx.token_normalize_func(cmd_name)
|
|
1920
|
+
cmd = self.get_command(ctx, cmd_name)
|
|
1921
|
+
|
|
1922
|
+
# If we don't find the command we want to show an error message
|
|
1923
|
+
# to the user that it was not provided. However, there is
|
|
1924
|
+
# something else we should do: if the first argument looks like
|
|
1925
|
+
# an option we want to kick off parsing again for arguments to
|
|
1926
|
+
# resolve things like --help which now should go to the main
|
|
1927
|
+
# place.
|
|
1928
|
+
if cmd is None and not ctx.resilient_parsing:
|
|
1929
|
+
if _split_opt(cmd_name)[0]:
|
|
1930
|
+
self.parse_args(ctx, args)
|
|
1931
|
+
ctx.fail(_("No such command {name!r}.").format(name=original_cmd_name))
|
|
1932
|
+
return cmd_name if cmd else None, cmd, args[1:]
|
|
1933
|
+
|
|
1934
|
+
def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]:
|
|
1935
|
+
"""Return a list of completions for the incomplete value. Looks
|
|
1936
|
+
at the names of options, subcommands, and chained
|
|
1937
|
+
multi-commands.
|
|
1938
|
+
|
|
1939
|
+
:param ctx: Invocation context for this command.
|
|
1940
|
+
:param incomplete: Value being completed. May be empty.
|
|
1941
|
+
|
|
1942
|
+
.. versionadded:: 8.0
|
|
1943
|
+
"""
|
|
1944
|
+
from pipenv.vendor.click.shell_completion import CompletionItem
|
|
1945
|
+
|
|
1946
|
+
results = [
|
|
1947
|
+
CompletionItem(name, help=command.get_short_help_str())
|
|
1948
|
+
for name, command in _complete_visible_commands(ctx, incomplete)
|
|
1949
|
+
]
|
|
1950
|
+
results.extend(super().shell_complete(ctx, incomplete))
|
|
1951
|
+
return results
|
|
1952
|
+
|
|
1953
|
+
|
|
1954
|
+
class _MultiCommand(Group, metaclass=_FakeSubclassCheck):
|
|
1955
|
+
"""
|
|
1956
|
+
.. deprecated:: 8.2
|
|
1957
|
+
Will be removed in Click 9.0. Use ``Group`` instead.
|
|
1958
|
+
"""
|
|
1959
|
+
|
|
1960
|
+
|
|
1961
|
+
class CommandCollection(Group):
|
|
1962
|
+
"""A :class:`Group` that looks up subcommands on other groups. If a command
|
|
1963
|
+
is not found on this group, each registered source is checked in order.
|
|
1964
|
+
Parameters on a source are not added to this group, and a source's callback
|
|
1965
|
+
is not invoked when invoking its commands. In other words, this "flattens"
|
|
1966
|
+
commands in many groups into this one group.
|
|
1967
|
+
|
|
1968
|
+
:param name: The name of the group command.
|
|
1969
|
+
:param sources: A list of :class:`Group` objects to look up commands from.
|
|
1970
|
+
:param kwargs: Other arguments passed to :class:`Group`.
|
|
1971
|
+
|
|
1972
|
+
.. versionchanged:: 8.2
|
|
1973
|
+
This is a subclass of ``Group``. Commands are looked up first on this
|
|
1974
|
+
group, then each of its sources.
|
|
1975
|
+
"""
|
|
1976
|
+
|
|
1977
|
+
def __init__(
|
|
1978
|
+
self,
|
|
1979
|
+
name: str | None = None,
|
|
1980
|
+
sources: list[Group] | None = None,
|
|
1981
|
+
**kwargs: t.Any,
|
|
1982
|
+
) -> None:
|
|
1983
|
+
super().__init__(name, **kwargs)
|
|
1984
|
+
#: The list of registered groups.
|
|
1985
|
+
self.sources: list[Group] = sources or []
|
|
1986
|
+
|
|
1987
|
+
def add_source(self, group: Group) -> None:
|
|
1988
|
+
"""Add a group as a source of commands."""
|
|
1989
|
+
self.sources.append(group)
|
|
1990
|
+
|
|
1991
|
+
def get_command(self, ctx: Context, cmd_name: str) -> Command | None:
|
|
1992
|
+
rv = super().get_command(ctx, cmd_name)
|
|
1993
|
+
|
|
1994
|
+
if rv is not None:
|
|
1995
|
+
return rv
|
|
1996
|
+
|
|
1997
|
+
for source in self.sources:
|
|
1998
|
+
rv = source.get_command(ctx, cmd_name)
|
|
1999
|
+
|
|
2000
|
+
if rv is not None:
|
|
2001
|
+
if self.chain:
|
|
2002
|
+
_check_nested_chain(self, cmd_name, rv)
|
|
2003
|
+
|
|
2004
|
+
return rv
|
|
2005
|
+
|
|
2006
|
+
return None
|
|
2007
|
+
|
|
2008
|
+
def list_commands(self, ctx: Context) -> list[str]:
|
|
2009
|
+
rv: set[str] = set(super().list_commands(ctx))
|
|
2010
|
+
|
|
2011
|
+
for source in self.sources:
|
|
2012
|
+
rv.update(source.list_commands(ctx))
|
|
2013
|
+
|
|
2014
|
+
return sorted(rv)
|
|
2015
|
+
|
|
2016
|
+
|
|
2017
|
+
def _check_iter(value: t.Any) -> cabc.Iterator[t.Any]:
|
|
2018
|
+
"""Check if the value is iterable but not a string. Raises a type
|
|
2019
|
+
error, or return an iterator over the value.
|
|
2020
|
+
"""
|
|
2021
|
+
if isinstance(value, str):
|
|
2022
|
+
raise TypeError
|
|
2023
|
+
|
|
2024
|
+
return iter(value)
|
|
2025
|
+
|
|
2026
|
+
|
|
2027
|
+
class Parameter:
|
|
2028
|
+
r"""A parameter to a command comes in two versions: they are either
|
|
2029
|
+
:class:`Option`\s or :class:`Argument`\s. Other subclasses are currently
|
|
2030
|
+
not supported by design as some of the internals for parsing are
|
|
2031
|
+
intentionally not finalized.
|
|
2032
|
+
|
|
2033
|
+
Some settings are supported by both options and arguments.
|
|
2034
|
+
|
|
2035
|
+
:param param_decls: the parameter declarations for this option or
|
|
2036
|
+
argument. This is a list of flags or argument
|
|
2037
|
+
names.
|
|
2038
|
+
:param type: the type that should be used. Either a :class:`ParamType`
|
|
2039
|
+
or a Python type. The latter is converted into the former
|
|
2040
|
+
automatically if supported.
|
|
2041
|
+
:param required: controls if this is optional or not.
|
|
2042
|
+
:param default: the default value if omitted. This can also be a callable,
|
|
2043
|
+
in which case it's invoked when the default is needed
|
|
2044
|
+
without any arguments.
|
|
2045
|
+
:param callback: A function to further process or validate the value
|
|
2046
|
+
after type conversion. It is called as ``f(ctx, param, value)``
|
|
2047
|
+
and must return the value. It is called for all sources,
|
|
2048
|
+
including prompts.
|
|
2049
|
+
:param nargs: the number of arguments to match. If not ``1`` the return
|
|
2050
|
+
value is a tuple instead of single value. The default for
|
|
2051
|
+
nargs is ``1`` (except if the type is a tuple, then it's
|
|
2052
|
+
the arity of the tuple). If ``nargs=-1``, all remaining
|
|
2053
|
+
parameters are collected.
|
|
2054
|
+
:param metavar: how the value is represented in the help page.
|
|
2055
|
+
:param expose_value: if this is `True` then the value is passed onwards
|
|
2056
|
+
to the command callback and stored on the context,
|
|
2057
|
+
otherwise it's skipped.
|
|
2058
|
+
:param is_eager: eager values are processed before non eager ones. This
|
|
2059
|
+
should not be set for arguments or it will inverse the
|
|
2060
|
+
order of processing.
|
|
2061
|
+
:param envvar: environment variable(s) that are used to provide a default value for
|
|
2062
|
+
this parameter. This can be a string or a sequence of strings. If a sequence is
|
|
2063
|
+
given, only the first non-empty environment variable is used for the parameter.
|
|
2064
|
+
:param shell_complete: A function that returns custom shell
|
|
2065
|
+
completions. Used instead of the param's type completion if
|
|
2066
|
+
given. Takes ``ctx, param, incomplete`` and must return a list
|
|
2067
|
+
of :class:`~click.shell_completion.CompletionItem` or a list of
|
|
2068
|
+
strings.
|
|
2069
|
+
:param deprecated: If ``True`` or non-empty string, issues a message
|
|
2070
|
+
indicating that the argument is deprecated and highlights
|
|
2071
|
+
its deprecation in --help. The message can be customized
|
|
2072
|
+
by using a string as the value. A deprecated parameter
|
|
2073
|
+
cannot be required, a ValueError will be raised otherwise.
|
|
2074
|
+
|
|
2075
|
+
.. versionchanged:: 8.2.0
|
|
2076
|
+
Introduction of ``deprecated``.
|
|
2077
|
+
|
|
2078
|
+
.. versionchanged:: 8.2
|
|
2079
|
+
Adding duplicate parameter names to a :class:`~click.core.Command` will
|
|
2080
|
+
result in a ``UserWarning`` being shown.
|
|
2081
|
+
|
|
2082
|
+
.. versionchanged:: 8.2
|
|
2083
|
+
Adding duplicate parameter names to a :class:`~click.core.Command` will
|
|
2084
|
+
result in a ``UserWarning`` being shown.
|
|
2085
|
+
|
|
2086
|
+
.. versionchanged:: 8.0
|
|
2087
|
+
``process_value`` validates required parameters and bounded
|
|
2088
|
+
``nargs``, and invokes the parameter callback before returning
|
|
2089
|
+
the value. This allows the callback to validate prompts.
|
|
2090
|
+
``full_process_value`` is removed.
|
|
2091
|
+
|
|
2092
|
+
.. versionchanged:: 8.0
|
|
2093
|
+
``autocompletion`` is renamed to ``shell_complete`` and has new
|
|
2094
|
+
semantics described above. The old name is deprecated and will
|
|
2095
|
+
be removed in 8.1, until then it will be wrapped to match the
|
|
2096
|
+
new requirements.
|
|
2097
|
+
|
|
2098
|
+
.. versionchanged:: 8.0
|
|
2099
|
+
For ``multiple=True, nargs>1``, the default must be a list of
|
|
2100
|
+
tuples.
|
|
2101
|
+
|
|
2102
|
+
.. versionchanged:: 8.0
|
|
2103
|
+
Setting a default is no longer required for ``nargs>1``, it will
|
|
2104
|
+
default to ``None``. ``multiple=True`` or ``nargs=-1`` will
|
|
2105
|
+
default to ``()``.
|
|
2106
|
+
|
|
2107
|
+
.. versionchanged:: 7.1
|
|
2108
|
+
Empty environment variables are ignored rather than taking the
|
|
2109
|
+
empty string value. This makes it possible for scripts to clear
|
|
2110
|
+
variables if they can't unset them.
|
|
2111
|
+
|
|
2112
|
+
.. versionchanged:: 2.0
|
|
2113
|
+
Changed signature for parameter callback to also be passed the
|
|
2114
|
+
parameter. The old callback format will still work, but it will
|
|
2115
|
+
raise a warning to give you a chance to migrate the code easier.
|
|
2116
|
+
"""
|
|
2117
|
+
|
|
2118
|
+
param_type_name = "parameter"
|
|
2119
|
+
|
|
2120
|
+
def __init__(
|
|
2121
|
+
self,
|
|
2122
|
+
param_decls: cabc.Sequence[str] | None = None,
|
|
2123
|
+
type: types.ParamType | t.Any | None = None,
|
|
2124
|
+
required: bool = False,
|
|
2125
|
+
# XXX The default historically embed two concepts:
|
|
2126
|
+
# - the declaration of a Parameter object carrying the default (handy to
|
|
2127
|
+
# arbitrage the default value of coupled Parameters sharing the same
|
|
2128
|
+
# self.name, like flag options),
|
|
2129
|
+
# - and the actual value of the default.
|
|
2130
|
+
# It is confusing and is the source of many issues discussed in:
|
|
2131
|
+
# https://github.com/pallets/click/pull/3030
|
|
2132
|
+
# In the future, we might think of splitting it in two, not unlike
|
|
2133
|
+
# Option.is_flag and Option.flag_value: we could have something like
|
|
2134
|
+
# Parameter.is_default and Parameter.default_value.
|
|
2135
|
+
default: t.Any | t.Callable[[], t.Any] | None = UNSET,
|
|
2136
|
+
callback: t.Callable[[Context, Parameter, t.Any], t.Any] | None = None,
|
|
2137
|
+
nargs: int | None = None,
|
|
2138
|
+
multiple: bool = False,
|
|
2139
|
+
metavar: str | None = None,
|
|
2140
|
+
expose_value: bool = True,
|
|
2141
|
+
is_eager: bool = False,
|
|
2142
|
+
envvar: str | cabc.Sequence[str] | None = None,
|
|
2143
|
+
shell_complete: t.Callable[
|
|
2144
|
+
[Context, Parameter, str], list[CompletionItem] | list[str]
|
|
2145
|
+
]
|
|
2146
|
+
| None = None,
|
|
2147
|
+
deprecated: bool | str = False,
|
|
2148
|
+
) -> None:
|
|
2149
|
+
self.name: str | None
|
|
2150
|
+
self.opts: list[str]
|
|
2151
|
+
self.secondary_opts: list[str]
|
|
2152
|
+
self.name, self.opts, self.secondary_opts = self._parse_decls(
|
|
2153
|
+
param_decls or (), expose_value
|
|
2154
|
+
)
|
|
2155
|
+
self.type: types.ParamType = types.convert_type(type, default)
|
|
2156
|
+
|
|
2157
|
+
# Default nargs to what the type tells us if we have that
|
|
2158
|
+
# information available.
|
|
2159
|
+
if nargs is None:
|
|
2160
|
+
if self.type.is_composite:
|
|
2161
|
+
nargs = self.type.arity
|
|
2162
|
+
else:
|
|
2163
|
+
nargs = 1
|
|
2164
|
+
|
|
2165
|
+
self.required = required
|
|
2166
|
+
self.callback = callback
|
|
2167
|
+
self.nargs = nargs
|
|
2168
|
+
self.multiple = multiple
|
|
2169
|
+
self.expose_value = expose_value
|
|
2170
|
+
self.default: t.Any | t.Callable[[], t.Any] | None = default
|
|
2171
|
+
self.is_eager = is_eager
|
|
2172
|
+
self.metavar = metavar
|
|
2173
|
+
self.envvar = envvar
|
|
2174
|
+
self._custom_shell_complete = shell_complete
|
|
2175
|
+
self.deprecated = deprecated
|
|
2176
|
+
|
|
2177
|
+
if __debug__:
|
|
2178
|
+
if self.type.is_composite and nargs != self.type.arity:
|
|
2179
|
+
raise ValueError(
|
|
2180
|
+
f"'nargs' must be {self.type.arity} (or None) for"
|
|
2181
|
+
f" type {self.type!r}, but it was {nargs}."
|
|
2182
|
+
)
|
|
2183
|
+
|
|
2184
|
+
if required and deprecated:
|
|
2185
|
+
raise ValueError(
|
|
2186
|
+
f"The {self.param_type_name} '{self.human_readable_name}' "
|
|
2187
|
+
"is deprecated and still required. A deprecated "
|
|
2188
|
+
f"{self.param_type_name} cannot be required."
|
|
2189
|
+
)
|
|
2190
|
+
|
|
2191
|
+
def to_info_dict(self) -> dict[str, t.Any]:
|
|
2192
|
+
"""Gather information that could be useful for a tool generating
|
|
2193
|
+
user-facing documentation.
|
|
2194
|
+
|
|
2195
|
+
Use :meth:`click.Context.to_info_dict` to traverse the entire
|
|
2196
|
+
CLI structure.
|
|
2197
|
+
|
|
2198
|
+
.. versionchanged:: 8.3.0
|
|
2199
|
+
Returns ``None`` for the :attr:`default` if it was not set.
|
|
2200
|
+
|
|
2201
|
+
.. versionadded:: 8.0
|
|
2202
|
+
"""
|
|
2203
|
+
return {
|
|
2204
|
+
"name": self.name,
|
|
2205
|
+
"param_type_name": self.param_type_name,
|
|
2206
|
+
"opts": self.opts,
|
|
2207
|
+
"secondary_opts": self.secondary_opts,
|
|
2208
|
+
"type": self.type.to_info_dict(),
|
|
2209
|
+
"required": self.required,
|
|
2210
|
+
"nargs": self.nargs,
|
|
2211
|
+
"multiple": self.multiple,
|
|
2212
|
+
# We explicitly hide the :attr:`UNSET` value to the user, as we choose to
|
|
2213
|
+
# make it an implementation detail. And because ``to_info_dict`` has been
|
|
2214
|
+
# designed for documentation purposes, we return ``None`` instead.
|
|
2215
|
+
"default": self.default if self.default is not UNSET else None,
|
|
2216
|
+
"envvar": self.envvar,
|
|
2217
|
+
}
|
|
2218
|
+
|
|
2219
|
+
def __repr__(self) -> str:
|
|
2220
|
+
return f"<{self.__class__.__name__} {self.name}>"
|
|
2221
|
+
|
|
2222
|
+
def _parse_decls(
|
|
2223
|
+
self, decls: cabc.Sequence[str], expose_value: bool
|
|
2224
|
+
) -> tuple[str | None, list[str], list[str]]:
|
|
2225
|
+
raise NotImplementedError()
|
|
2226
|
+
|
|
2227
|
+
@property
|
|
2228
|
+
def human_readable_name(self) -> str:
|
|
2229
|
+
"""Returns the human readable name of this parameter. This is the
|
|
2230
|
+
same as the name for options, but the metavar for arguments.
|
|
2231
|
+
"""
|
|
2232
|
+
return self.name # type: ignore
|
|
2233
|
+
|
|
2234
|
+
def make_metavar(self, ctx: Context) -> str:
|
|
2235
|
+
if self.metavar is not None:
|
|
2236
|
+
return self.metavar
|
|
2237
|
+
|
|
2238
|
+
metavar = self.type.get_metavar(param=self, ctx=ctx)
|
|
2239
|
+
|
|
2240
|
+
if metavar is None:
|
|
2241
|
+
metavar = self.type.name.upper()
|
|
2242
|
+
|
|
2243
|
+
if self.nargs != 1:
|
|
2244
|
+
metavar += "..."
|
|
2245
|
+
|
|
2246
|
+
return metavar
|
|
2247
|
+
|
|
2248
|
+
@t.overload
|
|
2249
|
+
def get_default(
|
|
2250
|
+
self, ctx: Context, call: t.Literal[True] = True
|
|
2251
|
+
) -> t.Any | None: ...
|
|
2252
|
+
|
|
2253
|
+
@t.overload
|
|
2254
|
+
def get_default(
|
|
2255
|
+
self, ctx: Context, call: bool = ...
|
|
2256
|
+
) -> t.Any | t.Callable[[], t.Any] | None: ...
|
|
2257
|
+
|
|
2258
|
+
def get_default(
|
|
2259
|
+
self, ctx: Context, call: bool = True
|
|
2260
|
+
) -> t.Any | t.Callable[[], t.Any] | None:
|
|
2261
|
+
"""Get the default for the parameter. Tries
|
|
2262
|
+
:meth:`Context.lookup_default` first, then the local default.
|
|
2263
|
+
|
|
2264
|
+
:param ctx: Current context.
|
|
2265
|
+
:param call: If the default is a callable, call it. Disable to
|
|
2266
|
+
return the callable instead.
|
|
2267
|
+
|
|
2268
|
+
.. versionchanged:: 8.0.2
|
|
2269
|
+
Type casting is no longer performed when getting a default.
|
|
2270
|
+
|
|
2271
|
+
.. versionchanged:: 8.0.1
|
|
2272
|
+
Type casting can fail in resilient parsing mode. Invalid
|
|
2273
|
+
defaults will not prevent showing help text.
|
|
2274
|
+
|
|
2275
|
+
.. versionchanged:: 8.0
|
|
2276
|
+
Looks at ``ctx.default_map`` first.
|
|
2277
|
+
|
|
2278
|
+
.. versionchanged:: 8.0
|
|
2279
|
+
Added the ``call`` parameter.
|
|
2280
|
+
"""
|
|
2281
|
+
value = ctx.lookup_default(self.name, call=False) # type: ignore
|
|
2282
|
+
|
|
2283
|
+
if value is UNSET:
|
|
2284
|
+
value = self.default
|
|
2285
|
+
|
|
2286
|
+
if call and callable(value):
|
|
2287
|
+
value = value()
|
|
2288
|
+
|
|
2289
|
+
return value
|
|
2290
|
+
|
|
2291
|
+
def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None:
|
|
2292
|
+
raise NotImplementedError()
|
|
2293
|
+
|
|
2294
|
+
def consume_value(
|
|
2295
|
+
self, ctx: Context, opts: cabc.Mapping[str, t.Any]
|
|
2296
|
+
) -> tuple[t.Any, ParameterSource]:
|
|
2297
|
+
"""Returns the parameter value produced by the parser.
|
|
2298
|
+
|
|
2299
|
+
If the parser did not produce a value from user input, the value is either
|
|
2300
|
+
sourced from the environment variable, the default map, or the parameter's
|
|
2301
|
+
default value. In that order of precedence.
|
|
2302
|
+
|
|
2303
|
+
If no value is found, an internal sentinel value is returned.
|
|
2304
|
+
|
|
2305
|
+
:meta private:
|
|
2306
|
+
"""
|
|
2307
|
+
# Collect from the parse the value passed by the user to the CLI.
|
|
2308
|
+
value = opts.get(self.name, UNSET) # type: ignore
|
|
2309
|
+
# If the value is set, it means it was sourced from the command line by the
|
|
2310
|
+
# parser, otherwise it left unset by default.
|
|
2311
|
+
source = (
|
|
2312
|
+
ParameterSource.COMMANDLINE
|
|
2313
|
+
if value is not UNSET
|
|
2314
|
+
else ParameterSource.DEFAULT
|
|
2315
|
+
)
|
|
2316
|
+
|
|
2317
|
+
if value is UNSET:
|
|
2318
|
+
envvar_value = self.value_from_envvar(ctx)
|
|
2319
|
+
if envvar_value is not None:
|
|
2320
|
+
value = envvar_value
|
|
2321
|
+
source = ParameterSource.ENVIRONMENT
|
|
2322
|
+
|
|
2323
|
+
if value is UNSET:
|
|
2324
|
+
default_map_value = ctx.lookup_default(self.name) # type: ignore
|
|
2325
|
+
if default_map_value is not UNSET:
|
|
2326
|
+
value = default_map_value
|
|
2327
|
+
source = ParameterSource.DEFAULT_MAP
|
|
2328
|
+
|
|
2329
|
+
if value is UNSET:
|
|
2330
|
+
default_value = self.get_default(ctx)
|
|
2331
|
+
if default_value is not UNSET:
|
|
2332
|
+
value = default_value
|
|
2333
|
+
source = ParameterSource.DEFAULT
|
|
2334
|
+
|
|
2335
|
+
return value, source
|
|
2336
|
+
|
|
2337
|
+
def type_cast_value(self, ctx: Context, value: t.Any) -> t.Any:
|
|
2338
|
+
"""Convert and validate a value against the parameter's
|
|
2339
|
+
:attr:`type`, :attr:`multiple`, and :attr:`nargs`.
|
|
2340
|
+
"""
|
|
2341
|
+
if value is None:
|
|
2342
|
+
if self.multiple or self.nargs == -1:
|
|
2343
|
+
return ()
|
|
2344
|
+
else:
|
|
2345
|
+
return value
|
|
2346
|
+
|
|
2347
|
+
def check_iter(value: t.Any) -> cabc.Iterator[t.Any]:
|
|
2348
|
+
try:
|
|
2349
|
+
return _check_iter(value)
|
|
2350
|
+
except TypeError:
|
|
2351
|
+
# This should only happen when passing in args manually,
|
|
2352
|
+
# the parser should construct an iterable when parsing
|
|
2353
|
+
# the command line.
|
|
2354
|
+
raise BadParameter(
|
|
2355
|
+
_("Value must be an iterable."), ctx=ctx, param=self
|
|
2356
|
+
) from None
|
|
2357
|
+
|
|
2358
|
+
# Define the conversion function based on nargs and type.
|
|
2359
|
+
|
|
2360
|
+
if self.nargs == 1 or self.type.is_composite:
|
|
2361
|
+
|
|
2362
|
+
def convert(value: t.Any) -> t.Any:
|
|
2363
|
+
return self.type(value, param=self, ctx=ctx)
|
|
2364
|
+
|
|
2365
|
+
elif self.nargs == -1:
|
|
2366
|
+
|
|
2367
|
+
def convert(value: t.Any) -> t.Any: # tuple[t.Any, ...]
|
|
2368
|
+
return tuple(self.type(x, self, ctx) for x in check_iter(value))
|
|
2369
|
+
|
|
2370
|
+
else: # nargs > 1
|
|
2371
|
+
|
|
2372
|
+
def convert(value: t.Any) -> t.Any: # tuple[t.Any, ...]
|
|
2373
|
+
value = tuple(check_iter(value))
|
|
2374
|
+
|
|
2375
|
+
if len(value) != self.nargs:
|
|
2376
|
+
raise BadParameter(
|
|
2377
|
+
ngettext(
|
|
2378
|
+
"Takes {nargs} values but 1 was given.",
|
|
2379
|
+
"Takes {nargs} values but {len} were given.",
|
|
2380
|
+
len(value),
|
|
2381
|
+
).format(nargs=self.nargs, len=len(value)),
|
|
2382
|
+
ctx=ctx,
|
|
2383
|
+
param=self,
|
|
2384
|
+
)
|
|
2385
|
+
|
|
2386
|
+
return tuple(self.type(x, self, ctx) for x in value)
|
|
2387
|
+
|
|
2388
|
+
if self.multiple:
|
|
2389
|
+
return tuple(convert(x) for x in check_iter(value))
|
|
2390
|
+
|
|
2391
|
+
return convert(value)
|
|
2392
|
+
|
|
2393
|
+
def value_is_missing(self, value: t.Any) -> bool:
|
|
2394
|
+
"""A value is considered missing if:
|
|
2395
|
+
|
|
2396
|
+
- it is :attr:`UNSET`,
|
|
2397
|
+
- or if it is an empty sequence while the parameter is suppose to have
|
|
2398
|
+
non-single value (i.e. :attr:`nargs` is not ``1`` or :attr:`multiple` is
|
|
2399
|
+
set).
|
|
2400
|
+
|
|
2401
|
+
:meta private:
|
|
2402
|
+
"""
|
|
2403
|
+
if value is UNSET:
|
|
2404
|
+
return True
|
|
2405
|
+
|
|
2406
|
+
if (self.nargs != 1 or self.multiple) and value == ():
|
|
2407
|
+
return True
|
|
2408
|
+
|
|
2409
|
+
return False
|
|
2410
|
+
|
|
2411
|
+
def process_value(self, ctx: Context, value: t.Any) -> t.Any:
|
|
2412
|
+
"""Process the value of this parameter:
|
|
2413
|
+
|
|
2414
|
+
1. Type cast the value using :meth:`type_cast_value`.
|
|
2415
|
+
2. Check if the value is missing (see: :meth:`value_is_missing`), and raise
|
|
2416
|
+
:exc:`MissingParameter` if it is required.
|
|
2417
|
+
3. If a :attr:`callback` is set, call it to have the value replaced by the
|
|
2418
|
+
result of the callback. If the value was not set, the callback receive
|
|
2419
|
+
``None``. This keep the legacy behavior as it was before the introduction of
|
|
2420
|
+
the :attr:`UNSET` sentinel.
|
|
2421
|
+
|
|
2422
|
+
:meta private:
|
|
2423
|
+
"""
|
|
2424
|
+
# shelter `type_cast_value` from ever seeing an `UNSET` value by handling the
|
|
2425
|
+
# cases in which `UNSET` gets special treatment explicitly at this layer
|
|
2426
|
+
#
|
|
2427
|
+
# Refs:
|
|
2428
|
+
# https://github.com/pallets/click/issues/3069
|
|
2429
|
+
if value is UNSET:
|
|
2430
|
+
if self.multiple or self.nargs == -1:
|
|
2431
|
+
value = ()
|
|
2432
|
+
else:
|
|
2433
|
+
value = self.type_cast_value(ctx, value)
|
|
2434
|
+
|
|
2435
|
+
if self.required and self.value_is_missing(value):
|
|
2436
|
+
raise MissingParameter(ctx=ctx, param=self)
|
|
2437
|
+
|
|
2438
|
+
if self.callback is not None:
|
|
2439
|
+
# Legacy case: UNSET is not exposed directly to the callback, but converted
|
|
2440
|
+
# to None.
|
|
2441
|
+
if value is UNSET:
|
|
2442
|
+
value = None
|
|
2443
|
+
|
|
2444
|
+
# Search for parameters with UNSET values in the context.
|
|
2445
|
+
unset_keys = {k: None for k, v in ctx.params.items() if v is UNSET}
|
|
2446
|
+
# No UNSET values, call the callback as usual.
|
|
2447
|
+
if not unset_keys:
|
|
2448
|
+
value = self.callback(ctx, self, value)
|
|
2449
|
+
|
|
2450
|
+
# Legacy case: provide a temporarily manipulated context to the callback
|
|
2451
|
+
# to hide UNSET values as None.
|
|
2452
|
+
#
|
|
2453
|
+
# Refs:
|
|
2454
|
+
# https://github.com/pallets/click/issues/3136
|
|
2455
|
+
# https://github.com/pallets/click/pull/3137
|
|
2456
|
+
else:
|
|
2457
|
+
# Add another layer to the context stack to clearly hint that the
|
|
2458
|
+
# context is temporarily modified.
|
|
2459
|
+
with ctx:
|
|
2460
|
+
# Update the context parameters to replace UNSET with None.
|
|
2461
|
+
ctx.params.update(unset_keys)
|
|
2462
|
+
# Feed these fake context parameters to the callback.
|
|
2463
|
+
value = self.callback(ctx, self, value)
|
|
2464
|
+
# Restore the UNSET values in the context parameters.
|
|
2465
|
+
ctx.params.update(
|
|
2466
|
+
{
|
|
2467
|
+
k: UNSET
|
|
2468
|
+
for k in unset_keys
|
|
2469
|
+
# Only restore keys that are present and still None, in case
|
|
2470
|
+
# the callback modified other parameters.
|
|
2471
|
+
if k in ctx.params and ctx.params[k] is None
|
|
2472
|
+
}
|
|
2473
|
+
)
|
|
2474
|
+
|
|
2475
|
+
return value
|
|
2476
|
+
|
|
2477
|
+
def resolve_envvar_value(self, ctx: Context) -> str | None:
|
|
2478
|
+
"""Returns the value found in the environment variable(s) attached to this
|
|
2479
|
+
parameter.
|
|
2480
|
+
|
|
2481
|
+
Environment variables values are `always returned as strings
|
|
2482
|
+
<https://docs.python.org/3/library/os.html#os.environ>`_.
|
|
2483
|
+
|
|
2484
|
+
This method returns ``None`` if:
|
|
2485
|
+
|
|
2486
|
+
- the :attr:`envvar` property is not set on the :class:`Parameter`,
|
|
2487
|
+
- the environment variable is not found in the environment,
|
|
2488
|
+
- the variable is found in the environment but its value is empty (i.e. the
|
|
2489
|
+
environment variable is present but has an empty string).
|
|
2490
|
+
|
|
2491
|
+
If :attr:`envvar` is setup with multiple environment variables,
|
|
2492
|
+
then only the first non-empty value is returned.
|
|
2493
|
+
|
|
2494
|
+
.. caution::
|
|
2495
|
+
|
|
2496
|
+
The raw value extracted from the environment is not normalized and is
|
|
2497
|
+
returned as-is. Any normalization or reconciliation is performed later by
|
|
2498
|
+
the :class:`Parameter`'s :attr:`type`.
|
|
2499
|
+
|
|
2500
|
+
:meta private:
|
|
2501
|
+
"""
|
|
2502
|
+
if not self.envvar:
|
|
2503
|
+
return None
|
|
2504
|
+
|
|
2505
|
+
if isinstance(self.envvar, str):
|
|
2506
|
+
rv = os.environ.get(self.envvar)
|
|
2507
|
+
|
|
2508
|
+
if rv:
|
|
2509
|
+
return rv
|
|
2510
|
+
else:
|
|
2511
|
+
for envvar in self.envvar:
|
|
2512
|
+
rv = os.environ.get(envvar)
|
|
2513
|
+
|
|
2514
|
+
# Return the first non-empty value of the list of environment variables.
|
|
2515
|
+
if rv:
|
|
2516
|
+
return rv
|
|
2517
|
+
# Else, absence of value is interpreted as an environment variable that
|
|
2518
|
+
# is not set, so proceed to the next one.
|
|
2519
|
+
|
|
2520
|
+
return None
|
|
2521
|
+
|
|
2522
|
+
def value_from_envvar(self, ctx: Context) -> str | cabc.Sequence[str] | None:
|
|
2523
|
+
"""Process the raw environment variable string for this parameter.
|
|
2524
|
+
|
|
2525
|
+
Returns the string as-is or splits it into a sequence of strings if the
|
|
2526
|
+
parameter is expecting multiple values (i.e. its :attr:`nargs` property is set
|
|
2527
|
+
to a value other than ``1``).
|
|
2528
|
+
|
|
2529
|
+
:meta private:
|
|
2530
|
+
"""
|
|
2531
|
+
rv = self.resolve_envvar_value(ctx)
|
|
2532
|
+
|
|
2533
|
+
if rv is not None and self.nargs != 1:
|
|
2534
|
+
return self.type.split_envvar_value(rv)
|
|
2535
|
+
|
|
2536
|
+
return rv
|
|
2537
|
+
|
|
2538
|
+
def handle_parse_result(
|
|
2539
|
+
self, ctx: Context, opts: cabc.Mapping[str, t.Any], args: list[str]
|
|
2540
|
+
) -> tuple[t.Any, list[str]]:
|
|
2541
|
+
"""Process the value produced by the parser from user input.
|
|
2542
|
+
|
|
2543
|
+
Always process the value through the Parameter's :attr:`type`, wherever it
|
|
2544
|
+
comes from.
|
|
2545
|
+
|
|
2546
|
+
If the parameter is deprecated, this method warn the user about it. But only if
|
|
2547
|
+
the value has been explicitly set by the user (and as such, is not coming from
|
|
2548
|
+
a default).
|
|
2549
|
+
|
|
2550
|
+
:meta private:
|
|
2551
|
+
"""
|
|
2552
|
+
with augment_usage_errors(ctx, param=self):
|
|
2553
|
+
value, source = self.consume_value(ctx, opts)
|
|
2554
|
+
|
|
2555
|
+
ctx.set_parameter_source(self.name, source) # type: ignore
|
|
2556
|
+
|
|
2557
|
+
# Display a deprecation warning if necessary.
|
|
2558
|
+
if (
|
|
2559
|
+
self.deprecated
|
|
2560
|
+
and value is not UNSET
|
|
2561
|
+
and source not in (ParameterSource.DEFAULT, ParameterSource.DEFAULT_MAP)
|
|
2562
|
+
):
|
|
2563
|
+
extra_message = (
|
|
2564
|
+
f" {self.deprecated}" if isinstance(self.deprecated, str) else ""
|
|
2565
|
+
)
|
|
2566
|
+
message = _(
|
|
2567
|
+
"DeprecationWarning: The {param_type} {name!r} is deprecated."
|
|
2568
|
+
"{extra_message}"
|
|
2569
|
+
).format(
|
|
2570
|
+
param_type=self.param_type_name,
|
|
2571
|
+
name=self.human_readable_name,
|
|
2572
|
+
extra_message=extra_message,
|
|
2573
|
+
)
|
|
2574
|
+
echo(style(message, fg="red"), err=True)
|
|
2575
|
+
|
|
2576
|
+
# Process the value through the parameter's type.
|
|
2577
|
+
try:
|
|
2578
|
+
value = self.process_value(ctx, value)
|
|
2579
|
+
except Exception:
|
|
2580
|
+
if not ctx.resilient_parsing:
|
|
2581
|
+
raise
|
|
2582
|
+
# In resilient parsing mode, we do not want to fail the command if the
|
|
2583
|
+
# value is incompatible with the parameter type, so we reset the value
|
|
2584
|
+
# to UNSET, which will be interpreted as a missing value.
|
|
2585
|
+
value = UNSET
|
|
2586
|
+
|
|
2587
|
+
# Add parameter's value to the context.
|
|
2588
|
+
if (
|
|
2589
|
+
self.expose_value
|
|
2590
|
+
# We skip adding the value if it was previously set by another parameter
|
|
2591
|
+
# targeting the same variable name. This prevents parameters competing for
|
|
2592
|
+
# the same name to override each other.
|
|
2593
|
+
and (self.name not in ctx.params or ctx.params[self.name] is UNSET)
|
|
2594
|
+
):
|
|
2595
|
+
# Click is logically enforcing that the name is None if the parameter is
|
|
2596
|
+
# not to be exposed. We still assert it here to please the type checker.
|
|
2597
|
+
assert self.name is not None, (
|
|
2598
|
+
f"{self!r} parameter's name should not be None when exposing value."
|
|
2599
|
+
)
|
|
2600
|
+
ctx.params[self.name] = value
|
|
2601
|
+
|
|
2602
|
+
return value, args
|
|
2603
|
+
|
|
2604
|
+
def get_help_record(self, ctx: Context) -> tuple[str, str] | None:
|
|
2605
|
+
pass
|
|
2606
|
+
|
|
2607
|
+
def get_usage_pieces(self, ctx: Context) -> list[str]:
|
|
2608
|
+
return []
|
|
2609
|
+
|
|
2610
|
+
def get_error_hint(self, ctx: Context) -> str:
|
|
2611
|
+
"""Get a stringified version of the param for use in error messages to
|
|
2612
|
+
indicate which param caused the error.
|
|
2613
|
+
"""
|
|
2614
|
+
hint_list = self.opts or [self.human_readable_name]
|
|
2615
|
+
return " / ".join(f"'{x}'" for x in hint_list)
|
|
2616
|
+
|
|
2617
|
+
def shell_complete(self, ctx: Context, incomplete: str) -> list[CompletionItem]:
|
|
2618
|
+
"""Return a list of completions for the incomplete value. If a
|
|
2619
|
+
``shell_complete`` function was given during init, it is used.
|
|
2620
|
+
Otherwise, the :attr:`type`
|
|
2621
|
+
:meth:`~click.types.ParamType.shell_complete` function is used.
|
|
2622
|
+
|
|
2623
|
+
:param ctx: Invocation context for this command.
|
|
2624
|
+
:param incomplete: Value being completed. May be empty.
|
|
2625
|
+
|
|
2626
|
+
.. versionadded:: 8.0
|
|
2627
|
+
"""
|
|
2628
|
+
if self._custom_shell_complete is not None:
|
|
2629
|
+
results = self._custom_shell_complete(ctx, self, incomplete)
|
|
2630
|
+
|
|
2631
|
+
if results and isinstance(results[0], str):
|
|
2632
|
+
from pipenv.vendor.click.shell_completion import CompletionItem
|
|
2633
|
+
|
|
2634
|
+
results = [CompletionItem(c) for c in results]
|
|
2635
|
+
|
|
2636
|
+
return t.cast("list[CompletionItem]", results)
|
|
2637
|
+
|
|
2638
|
+
return self.type.shell_complete(ctx, self, incomplete)
|
|
2639
|
+
|
|
2640
|
+
|
|
2641
|
+
class Option(Parameter):
|
|
2642
|
+
"""Options are usually optional values on the command line and
|
|
2643
|
+
have some extra features that arguments don't have.
|
|
2644
|
+
|
|
2645
|
+
All other parameters are passed onwards to the parameter constructor.
|
|
2646
|
+
|
|
2647
|
+
:param show_default: Show the default value for this option in its
|
|
2648
|
+
help text. Values are not shown by default, unless
|
|
2649
|
+
:attr:`Context.show_default` is ``True``. If this value is a
|
|
2650
|
+
string, it shows that string in parentheses instead of the
|
|
2651
|
+
actual value. This is particularly useful for dynamic options.
|
|
2652
|
+
For single option boolean flags, the default remains hidden if
|
|
2653
|
+
its value is ``False``.
|
|
2654
|
+
:param show_envvar: Controls if an environment variable should be
|
|
2655
|
+
shown on the help page and error messages.
|
|
2656
|
+
Normally, environment variables are not shown.
|
|
2657
|
+
:param prompt: If set to ``True`` or a non empty string then the
|
|
2658
|
+
user will be prompted for input. If set to ``True`` the prompt
|
|
2659
|
+
will be the option name capitalized. A deprecated option cannot be
|
|
2660
|
+
prompted.
|
|
2661
|
+
:param confirmation_prompt: Prompt a second time to confirm the
|
|
2662
|
+
value if it was prompted for. Can be set to a string instead of
|
|
2663
|
+
``True`` to customize the message.
|
|
2664
|
+
:param prompt_required: If set to ``False``, the user will be
|
|
2665
|
+
prompted for input only when the option was specified as a flag
|
|
2666
|
+
without a value.
|
|
2667
|
+
:param hide_input: If this is ``True`` then the input on the prompt
|
|
2668
|
+
will be hidden from the user. This is useful for password input.
|
|
2669
|
+
:param is_flag: forces this option to act as a flag. The default is
|
|
2670
|
+
auto detection.
|
|
2671
|
+
:param flag_value: which value should be used for this flag if it's
|
|
2672
|
+
enabled. This is set to a boolean automatically if
|
|
2673
|
+
the option string contains a slash to mark two options.
|
|
2674
|
+
:param multiple: if this is set to `True` then the argument is accepted
|
|
2675
|
+
multiple times and recorded. This is similar to ``nargs``
|
|
2676
|
+
in how it works but supports arbitrary number of
|
|
2677
|
+
arguments.
|
|
2678
|
+
:param count: this flag makes an option increment an integer.
|
|
2679
|
+
:param allow_from_autoenv: if this is enabled then the value of this
|
|
2680
|
+
parameter will be pulled from an environment
|
|
2681
|
+
variable in case a prefix is defined on the
|
|
2682
|
+
context.
|
|
2683
|
+
:param help: the help string.
|
|
2684
|
+
:param hidden: hide this option from help outputs.
|
|
2685
|
+
:param attrs: Other command arguments described in :class:`Parameter`.
|
|
2686
|
+
|
|
2687
|
+
.. versionchanged:: 8.2
|
|
2688
|
+
``envvar`` used with ``flag_value`` will always use the ``flag_value``,
|
|
2689
|
+
previously it would use the value of the environment variable.
|
|
2690
|
+
|
|
2691
|
+
.. versionchanged:: 8.1
|
|
2692
|
+
Help text indentation is cleaned here instead of only in the
|
|
2693
|
+
``@option`` decorator.
|
|
2694
|
+
|
|
2695
|
+
.. versionchanged:: 8.1
|
|
2696
|
+
The ``show_default`` parameter overrides
|
|
2697
|
+
``Context.show_default``.
|
|
2698
|
+
|
|
2699
|
+
.. versionchanged:: 8.1
|
|
2700
|
+
The default of a single option boolean flag is not shown if the
|
|
2701
|
+
default value is ``False``.
|
|
2702
|
+
|
|
2703
|
+
.. versionchanged:: 8.0.1
|
|
2704
|
+
``type`` is detected from ``flag_value`` if given.
|
|
2705
|
+
"""
|
|
2706
|
+
|
|
2707
|
+
param_type_name = "option"
|
|
2708
|
+
|
|
2709
|
+
def __init__(
|
|
2710
|
+
self,
|
|
2711
|
+
param_decls: cabc.Sequence[str] | None = None,
|
|
2712
|
+
show_default: bool | str | None = None,
|
|
2713
|
+
prompt: bool | str = False,
|
|
2714
|
+
confirmation_prompt: bool | str = False,
|
|
2715
|
+
prompt_required: bool = True,
|
|
2716
|
+
hide_input: bool = False,
|
|
2717
|
+
is_flag: bool | None = None,
|
|
2718
|
+
flag_value: t.Any = UNSET,
|
|
2719
|
+
multiple: bool = False,
|
|
2720
|
+
count: bool = False,
|
|
2721
|
+
allow_from_autoenv: bool = True,
|
|
2722
|
+
type: types.ParamType | t.Any | None = None,
|
|
2723
|
+
help: str | None = None,
|
|
2724
|
+
hidden: bool = False,
|
|
2725
|
+
show_choices: bool = True,
|
|
2726
|
+
show_envvar: bool = False,
|
|
2727
|
+
deprecated: bool | str = False,
|
|
2728
|
+
**attrs: t.Any,
|
|
2729
|
+
) -> None:
|
|
2730
|
+
if help:
|
|
2731
|
+
help = inspect.cleandoc(help)
|
|
2732
|
+
|
|
2733
|
+
super().__init__(
|
|
2734
|
+
param_decls, type=type, multiple=multiple, deprecated=deprecated, **attrs
|
|
2735
|
+
)
|
|
2736
|
+
|
|
2737
|
+
if prompt is True:
|
|
2738
|
+
if self.name is None:
|
|
2739
|
+
raise TypeError("'name' is required with 'prompt=True'.")
|
|
2740
|
+
|
|
2741
|
+
prompt_text: str | None = self.name.replace("_", " ").capitalize()
|
|
2742
|
+
elif prompt is False:
|
|
2743
|
+
prompt_text = None
|
|
2744
|
+
else:
|
|
2745
|
+
prompt_text = prompt
|
|
2746
|
+
|
|
2747
|
+
if deprecated:
|
|
2748
|
+
deprecated_message = (
|
|
2749
|
+
f"(DEPRECATED: {deprecated})"
|
|
2750
|
+
if isinstance(deprecated, str)
|
|
2751
|
+
else "(DEPRECATED)"
|
|
2752
|
+
)
|
|
2753
|
+
help = help + deprecated_message if help is not None else deprecated_message
|
|
2754
|
+
|
|
2755
|
+
self.prompt = prompt_text
|
|
2756
|
+
self.confirmation_prompt = confirmation_prompt
|
|
2757
|
+
self.prompt_required = prompt_required
|
|
2758
|
+
self.hide_input = hide_input
|
|
2759
|
+
self.hidden = hidden
|
|
2760
|
+
|
|
2761
|
+
# The _flag_needs_value property tells the parser that this option is a flag
|
|
2762
|
+
# that cannot be used standalone and needs a value. With this information, the
|
|
2763
|
+
# parser can determine whether to consider the next user-provided argument in
|
|
2764
|
+
# the CLI as a value for this flag or as a new option.
|
|
2765
|
+
# If prompt is enabled but not required, then it opens the possibility for the
|
|
2766
|
+
# option to gets its value from the user.
|
|
2767
|
+
self._flag_needs_value = self.prompt is not None and not self.prompt_required
|
|
2768
|
+
|
|
2769
|
+
# Auto-detect if this is a flag or not.
|
|
2770
|
+
if is_flag is None:
|
|
2771
|
+
# Implicitly a flag because flag_value was set.
|
|
2772
|
+
if flag_value is not UNSET:
|
|
2773
|
+
is_flag = True
|
|
2774
|
+
# Not a flag, but when used as a flag it shows a prompt.
|
|
2775
|
+
elif self._flag_needs_value:
|
|
2776
|
+
is_flag = False
|
|
2777
|
+
# Implicitly a flag because secondary options names were given.
|
|
2778
|
+
elif self.secondary_opts:
|
|
2779
|
+
is_flag = True
|
|
2780
|
+
# The option is explicitly not a flag. But we do not know yet if it needs a
|
|
2781
|
+
# value or not. So we look at the default value to determine it.
|
|
2782
|
+
elif is_flag is False and not self._flag_needs_value:
|
|
2783
|
+
self._flag_needs_value = self.default is UNSET
|
|
2784
|
+
|
|
2785
|
+
if is_flag:
|
|
2786
|
+
# Set missing default for flags if not explicitly required or prompted.
|
|
2787
|
+
if self.default is UNSET and not self.required and not self.prompt:
|
|
2788
|
+
if multiple:
|
|
2789
|
+
self.default = ()
|
|
2790
|
+
|
|
2791
|
+
# Auto-detect the type of the flag based on the flag_value.
|
|
2792
|
+
if type is None:
|
|
2793
|
+
# A flag without a flag_value is a boolean flag.
|
|
2794
|
+
if flag_value is UNSET:
|
|
2795
|
+
self.type: types.ParamType = types.BoolParamType()
|
|
2796
|
+
# If the flag value is a boolean, use BoolParamType.
|
|
2797
|
+
elif isinstance(flag_value, bool):
|
|
2798
|
+
self.type = types.BoolParamType()
|
|
2799
|
+
# Otherwise, guess the type from the flag value.
|
|
2800
|
+
else:
|
|
2801
|
+
self.type = types.convert_type(None, flag_value)
|
|
2802
|
+
|
|
2803
|
+
self.is_flag: bool = bool(is_flag)
|
|
2804
|
+
self.is_bool_flag: bool = bool(
|
|
2805
|
+
is_flag and isinstance(self.type, types.BoolParamType)
|
|
2806
|
+
)
|
|
2807
|
+
self.flag_value: t.Any = flag_value
|
|
2808
|
+
|
|
2809
|
+
# Set boolean flag default to False if unset and not required.
|
|
2810
|
+
if self.is_bool_flag:
|
|
2811
|
+
if self.default is UNSET and not self.required:
|
|
2812
|
+
self.default = False
|
|
2813
|
+
|
|
2814
|
+
# Support the special case of aligning the default value with the flag_value
|
|
2815
|
+
# for flags whose default is explicitly set to True. Note that as long as we
|
|
2816
|
+
# have this condition, there is no way a flag can have a default set to True,
|
|
2817
|
+
# and a flag_value set to something else. Refs:
|
|
2818
|
+
# https://github.com/pallets/click/issues/3024#issuecomment-3146199461
|
|
2819
|
+
# https://github.com/pallets/click/pull/3030/commits/06847da
|
|
2820
|
+
if self.default is True and self.flag_value is not UNSET:
|
|
2821
|
+
self.default = self.flag_value
|
|
2822
|
+
|
|
2823
|
+
# Set the default flag_value if it is not set.
|
|
2824
|
+
if self.flag_value is UNSET:
|
|
2825
|
+
if self.is_flag:
|
|
2826
|
+
self.flag_value = True
|
|
2827
|
+
else:
|
|
2828
|
+
self.flag_value = None
|
|
2829
|
+
|
|
2830
|
+
# Counting.
|
|
2831
|
+
self.count = count
|
|
2832
|
+
if count:
|
|
2833
|
+
if type is None:
|
|
2834
|
+
self.type = types.IntRange(min=0)
|
|
2835
|
+
if self.default is UNSET:
|
|
2836
|
+
self.default = 0
|
|
2837
|
+
|
|
2838
|
+
self.allow_from_autoenv = allow_from_autoenv
|
|
2839
|
+
self.help = help
|
|
2840
|
+
self.show_default = show_default
|
|
2841
|
+
self.show_choices = show_choices
|
|
2842
|
+
self.show_envvar = show_envvar
|
|
2843
|
+
|
|
2844
|
+
if __debug__:
|
|
2845
|
+
if deprecated and prompt:
|
|
2846
|
+
raise ValueError("`deprecated` options cannot use `prompt`.")
|
|
2847
|
+
|
|
2848
|
+
if self.nargs == -1:
|
|
2849
|
+
raise TypeError("nargs=-1 is not supported for options.")
|
|
2850
|
+
|
|
2851
|
+
if not self.is_bool_flag and self.secondary_opts:
|
|
2852
|
+
raise TypeError("Secondary flag is not valid for non-boolean flag.")
|
|
2853
|
+
|
|
2854
|
+
if self.is_bool_flag and self.hide_input and self.prompt is not None:
|
|
2855
|
+
raise TypeError(
|
|
2856
|
+
"'prompt' with 'hide_input' is not valid for boolean flag."
|
|
2857
|
+
)
|
|
2858
|
+
|
|
2859
|
+
if self.count:
|
|
2860
|
+
if self.multiple:
|
|
2861
|
+
raise TypeError("'count' is not valid with 'multiple'.")
|
|
2862
|
+
|
|
2863
|
+
if self.is_flag:
|
|
2864
|
+
raise TypeError("'count' is not valid with 'is_flag'.")
|
|
2865
|
+
|
|
2866
|
+
def to_info_dict(self) -> dict[str, t.Any]:
|
|
2867
|
+
"""
|
|
2868
|
+
.. versionchanged:: 8.3.0
|
|
2869
|
+
Returns ``None`` for the :attr:`flag_value` if it was not set.
|
|
2870
|
+
"""
|
|
2871
|
+
info_dict = super().to_info_dict()
|
|
2872
|
+
info_dict.update(
|
|
2873
|
+
help=self.help,
|
|
2874
|
+
prompt=self.prompt,
|
|
2875
|
+
is_flag=self.is_flag,
|
|
2876
|
+
# We explicitly hide the :attr:`UNSET` value to the user, as we choose to
|
|
2877
|
+
# make it an implementation detail. And because ``to_info_dict`` has been
|
|
2878
|
+
# designed for documentation purposes, we return ``None`` instead.
|
|
2879
|
+
flag_value=self.flag_value if self.flag_value is not UNSET else None,
|
|
2880
|
+
count=self.count,
|
|
2881
|
+
hidden=self.hidden,
|
|
2882
|
+
)
|
|
2883
|
+
return info_dict
|
|
2884
|
+
|
|
2885
|
+
def get_error_hint(self, ctx: Context) -> str:
|
|
2886
|
+
result = super().get_error_hint(ctx)
|
|
2887
|
+
if self.show_envvar and self.envvar is not None:
|
|
2888
|
+
result += f" (env var: '{self.envvar}')"
|
|
2889
|
+
return result
|
|
2890
|
+
|
|
2891
|
+
def _parse_decls(
|
|
2892
|
+
self, decls: cabc.Sequence[str], expose_value: bool
|
|
2893
|
+
) -> tuple[str | None, list[str], list[str]]:
|
|
2894
|
+
opts = []
|
|
2895
|
+
secondary_opts = []
|
|
2896
|
+
name = None
|
|
2897
|
+
possible_names = []
|
|
2898
|
+
|
|
2899
|
+
for decl in decls:
|
|
2900
|
+
if decl.isidentifier():
|
|
2901
|
+
if name is not None:
|
|
2902
|
+
raise TypeError(f"Name '{name}' defined twice")
|
|
2903
|
+
name = decl
|
|
2904
|
+
else:
|
|
2905
|
+
split_char = ";" if decl[:1] == "/" else "/"
|
|
2906
|
+
if split_char in decl:
|
|
2907
|
+
first, second = decl.split(split_char, 1)
|
|
2908
|
+
first = first.rstrip()
|
|
2909
|
+
if first:
|
|
2910
|
+
possible_names.append(_split_opt(first))
|
|
2911
|
+
opts.append(first)
|
|
2912
|
+
second = second.lstrip()
|
|
2913
|
+
if second:
|
|
2914
|
+
secondary_opts.append(second.lstrip())
|
|
2915
|
+
if first == second:
|
|
2916
|
+
raise ValueError(
|
|
2917
|
+
f"Boolean option {decl!r} cannot use the"
|
|
2918
|
+
" same flag for true/false."
|
|
2919
|
+
)
|
|
2920
|
+
else:
|
|
2921
|
+
possible_names.append(_split_opt(decl))
|
|
2922
|
+
opts.append(decl)
|
|
2923
|
+
|
|
2924
|
+
if name is None and possible_names:
|
|
2925
|
+
possible_names.sort(key=lambda x: -len(x[0])) # group long options first
|
|
2926
|
+
name = possible_names[0][1].replace("-", "_").lower()
|
|
2927
|
+
if not name.isidentifier():
|
|
2928
|
+
name = None
|
|
2929
|
+
|
|
2930
|
+
if name is None:
|
|
2931
|
+
if not expose_value:
|
|
2932
|
+
return None, opts, secondary_opts
|
|
2933
|
+
raise TypeError(
|
|
2934
|
+
f"Could not determine name for option with declarations {decls!r}"
|
|
2935
|
+
)
|
|
2936
|
+
|
|
2937
|
+
if not opts and not secondary_opts:
|
|
2938
|
+
raise TypeError(
|
|
2939
|
+
f"No options defined but a name was passed ({name})."
|
|
2940
|
+
" Did you mean to declare an argument instead? Did"
|
|
2941
|
+
f" you mean to pass '--{name}'?"
|
|
2942
|
+
)
|
|
2943
|
+
|
|
2944
|
+
return name, opts, secondary_opts
|
|
2945
|
+
|
|
2946
|
+
def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None:
|
|
2947
|
+
if self.multiple:
|
|
2948
|
+
action = "append"
|
|
2949
|
+
elif self.count:
|
|
2950
|
+
action = "count"
|
|
2951
|
+
else:
|
|
2952
|
+
action = "store"
|
|
2953
|
+
|
|
2954
|
+
if self.is_flag:
|
|
2955
|
+
action = f"{action}_const"
|
|
2956
|
+
|
|
2957
|
+
if self.is_bool_flag and self.secondary_opts:
|
|
2958
|
+
parser.add_option(
|
|
2959
|
+
obj=self, opts=self.opts, dest=self.name, action=action, const=True
|
|
2960
|
+
)
|
|
2961
|
+
parser.add_option(
|
|
2962
|
+
obj=self,
|
|
2963
|
+
opts=self.secondary_opts,
|
|
2964
|
+
dest=self.name,
|
|
2965
|
+
action=action,
|
|
2966
|
+
const=False,
|
|
2967
|
+
)
|
|
2968
|
+
else:
|
|
2969
|
+
parser.add_option(
|
|
2970
|
+
obj=self,
|
|
2971
|
+
opts=self.opts,
|
|
2972
|
+
dest=self.name,
|
|
2973
|
+
action=action,
|
|
2974
|
+
const=self.flag_value,
|
|
2975
|
+
)
|
|
2976
|
+
else:
|
|
2977
|
+
parser.add_option(
|
|
2978
|
+
obj=self,
|
|
2979
|
+
opts=self.opts,
|
|
2980
|
+
dest=self.name,
|
|
2981
|
+
action=action,
|
|
2982
|
+
nargs=self.nargs,
|
|
2983
|
+
)
|
|
2984
|
+
|
|
2985
|
+
def get_help_record(self, ctx: Context) -> tuple[str, str] | None:
|
|
2986
|
+
if self.hidden:
|
|
2987
|
+
return None
|
|
2988
|
+
|
|
2989
|
+
any_prefix_is_slash = False
|
|
2990
|
+
|
|
2991
|
+
def _write_opts(opts: cabc.Sequence[str]) -> str:
|
|
2992
|
+
nonlocal any_prefix_is_slash
|
|
2993
|
+
|
|
2994
|
+
rv, any_slashes = join_options(opts)
|
|
2995
|
+
|
|
2996
|
+
if any_slashes:
|
|
2997
|
+
any_prefix_is_slash = True
|
|
2998
|
+
|
|
2999
|
+
if not self.is_flag and not self.count:
|
|
3000
|
+
rv += f" {self.make_metavar(ctx=ctx)}"
|
|
3001
|
+
|
|
3002
|
+
return rv
|
|
3003
|
+
|
|
3004
|
+
rv = [_write_opts(self.opts)]
|
|
3005
|
+
|
|
3006
|
+
if self.secondary_opts:
|
|
3007
|
+
rv.append(_write_opts(self.secondary_opts))
|
|
3008
|
+
|
|
3009
|
+
help = self.help or ""
|
|
3010
|
+
|
|
3011
|
+
extra = self.get_help_extra(ctx)
|
|
3012
|
+
extra_items = []
|
|
3013
|
+
if "envvars" in extra:
|
|
3014
|
+
extra_items.append(
|
|
3015
|
+
_("env var: {var}").format(var=", ".join(extra["envvars"]))
|
|
3016
|
+
)
|
|
3017
|
+
if "default" in extra:
|
|
3018
|
+
extra_items.append(_("default: {default}").format(default=extra["default"]))
|
|
3019
|
+
if "range" in extra:
|
|
3020
|
+
extra_items.append(extra["range"])
|
|
3021
|
+
if "required" in extra:
|
|
3022
|
+
extra_items.append(_(extra["required"]))
|
|
3023
|
+
|
|
3024
|
+
if extra_items:
|
|
3025
|
+
extra_str = "; ".join(extra_items)
|
|
3026
|
+
help = f"{help} [{extra_str}]" if help else f"[{extra_str}]"
|
|
3027
|
+
|
|
3028
|
+
return ("; " if any_prefix_is_slash else " / ").join(rv), help
|
|
3029
|
+
|
|
3030
|
+
def get_help_extra(self, ctx: Context) -> types.OptionHelpExtra:
|
|
3031
|
+
extra: types.OptionHelpExtra = {}
|
|
3032
|
+
|
|
3033
|
+
if self.show_envvar:
|
|
3034
|
+
envvar = self.envvar
|
|
3035
|
+
|
|
3036
|
+
if envvar is None:
|
|
3037
|
+
if (
|
|
3038
|
+
self.allow_from_autoenv
|
|
3039
|
+
and ctx.auto_envvar_prefix is not None
|
|
3040
|
+
and self.name is not None
|
|
3041
|
+
):
|
|
3042
|
+
envvar = f"{ctx.auto_envvar_prefix}_{self.name.upper()}"
|
|
3043
|
+
|
|
3044
|
+
if envvar is not None:
|
|
3045
|
+
if isinstance(envvar, str):
|
|
3046
|
+
extra["envvars"] = (envvar,)
|
|
3047
|
+
else:
|
|
3048
|
+
extra["envvars"] = tuple(str(d) for d in envvar)
|
|
3049
|
+
|
|
3050
|
+
# Temporarily enable resilient parsing to avoid type casting
|
|
3051
|
+
# failing for the default. Might be possible to extend this to
|
|
3052
|
+
# help formatting in general.
|
|
3053
|
+
resilient = ctx.resilient_parsing
|
|
3054
|
+
ctx.resilient_parsing = True
|
|
3055
|
+
|
|
3056
|
+
try:
|
|
3057
|
+
default_value = self.get_default(ctx, call=False)
|
|
3058
|
+
finally:
|
|
3059
|
+
ctx.resilient_parsing = resilient
|
|
3060
|
+
|
|
3061
|
+
show_default = False
|
|
3062
|
+
show_default_is_str = False
|
|
3063
|
+
|
|
3064
|
+
if self.show_default is not None:
|
|
3065
|
+
if isinstance(self.show_default, str):
|
|
3066
|
+
show_default_is_str = show_default = True
|
|
3067
|
+
else:
|
|
3068
|
+
show_default = self.show_default
|
|
3069
|
+
elif ctx.show_default is not None:
|
|
3070
|
+
show_default = ctx.show_default
|
|
3071
|
+
|
|
3072
|
+
if show_default_is_str or (
|
|
3073
|
+
show_default and (default_value not in (None, UNSET))
|
|
3074
|
+
):
|
|
3075
|
+
if show_default_is_str:
|
|
3076
|
+
default_string = f"({self.show_default})"
|
|
3077
|
+
elif isinstance(default_value, (list, tuple)):
|
|
3078
|
+
default_string = ", ".join(str(d) for d in default_value)
|
|
3079
|
+
elif isinstance(default_value, enum.Enum):
|
|
3080
|
+
default_string = default_value.name
|
|
3081
|
+
elif inspect.isfunction(default_value):
|
|
3082
|
+
default_string = _("(dynamic)")
|
|
3083
|
+
elif self.is_bool_flag and self.secondary_opts:
|
|
3084
|
+
# For boolean flags that have distinct True/False opts,
|
|
3085
|
+
# use the opt without prefix instead of the value.
|
|
3086
|
+
default_string = _split_opt(
|
|
3087
|
+
(self.opts if default_value else self.secondary_opts)[0]
|
|
3088
|
+
)[1]
|
|
3089
|
+
elif self.is_bool_flag and not self.secondary_opts and not default_value:
|
|
3090
|
+
default_string = ""
|
|
3091
|
+
elif default_value == "":
|
|
3092
|
+
default_string = '""'
|
|
3093
|
+
else:
|
|
3094
|
+
default_string = str(default_value)
|
|
3095
|
+
|
|
3096
|
+
if default_string:
|
|
3097
|
+
extra["default"] = default_string
|
|
3098
|
+
|
|
3099
|
+
if (
|
|
3100
|
+
isinstance(self.type, types._NumberRangeBase)
|
|
3101
|
+
# skip count with default range type
|
|
3102
|
+
and not (self.count and self.type.min == 0 and self.type.max is None)
|
|
3103
|
+
):
|
|
3104
|
+
range_str = self.type._describe_range()
|
|
3105
|
+
|
|
3106
|
+
if range_str:
|
|
3107
|
+
extra["range"] = range_str
|
|
3108
|
+
|
|
3109
|
+
if self.required:
|
|
3110
|
+
extra["required"] = "required"
|
|
3111
|
+
|
|
3112
|
+
return extra
|
|
3113
|
+
|
|
3114
|
+
def prompt_for_value(self, ctx: Context) -> t.Any:
|
|
3115
|
+
"""This is an alternative flow that can be activated in the full
|
|
3116
|
+
value processing if a value does not exist. It will prompt the
|
|
3117
|
+
user until a valid value exists and then returns the processed
|
|
3118
|
+
value as result.
|
|
3119
|
+
"""
|
|
3120
|
+
assert self.prompt is not None
|
|
3121
|
+
|
|
3122
|
+
# Calculate the default before prompting anything to lock in the value before
|
|
3123
|
+
# attempting any user interaction.
|
|
3124
|
+
default = self.get_default(ctx)
|
|
3125
|
+
|
|
3126
|
+
# A boolean flag can use a simplified [y/n] confirmation prompt.
|
|
3127
|
+
if self.is_bool_flag:
|
|
3128
|
+
# If we have no boolean default, we force the user to explicitly provide
|
|
3129
|
+
# one.
|
|
3130
|
+
if default in (UNSET, None):
|
|
3131
|
+
default = None
|
|
3132
|
+
# Nothing prevent you to declare an option that is simultaneously:
|
|
3133
|
+
# 1) auto-detected as a boolean flag,
|
|
3134
|
+
# 2) allowed to prompt, and
|
|
3135
|
+
# 3) still declare a non-boolean default.
|
|
3136
|
+
# This forced casting into a boolean is necessary to align any non-boolean
|
|
3137
|
+
# default to the prompt, which is going to be a [y/n]-style confirmation
|
|
3138
|
+
# because the option is still a boolean flag. That way, instead of [y/n],
|
|
3139
|
+
# we get [Y/n] or [y/N] depending on the truthy value of the default.
|
|
3140
|
+
# Refs: https://github.com/pallets/click/pull/3030#discussion_r2289180249
|
|
3141
|
+
else:
|
|
3142
|
+
default = bool(default)
|
|
3143
|
+
return confirm(self.prompt, default)
|
|
3144
|
+
|
|
3145
|
+
# If show_default is set to True/False, provide this to `prompt` as well. For
|
|
3146
|
+
# non-bool values of `show_default`, we use `prompt`'s default behavior
|
|
3147
|
+
prompt_kwargs: t.Any = {}
|
|
3148
|
+
if isinstance(self.show_default, bool):
|
|
3149
|
+
prompt_kwargs["show_default"] = self.show_default
|
|
3150
|
+
|
|
3151
|
+
return prompt(
|
|
3152
|
+
self.prompt,
|
|
3153
|
+
# Use ``None`` to inform the prompt() function to reiterate until a valid
|
|
3154
|
+
# value is provided by the user if we have no default.
|
|
3155
|
+
default=None if default is UNSET else default,
|
|
3156
|
+
type=self.type,
|
|
3157
|
+
hide_input=self.hide_input,
|
|
3158
|
+
show_choices=self.show_choices,
|
|
3159
|
+
confirmation_prompt=self.confirmation_prompt,
|
|
3160
|
+
value_proc=lambda x: self.process_value(ctx, x),
|
|
3161
|
+
**prompt_kwargs,
|
|
3162
|
+
)
|
|
3163
|
+
|
|
3164
|
+
def resolve_envvar_value(self, ctx: Context) -> str | None:
|
|
3165
|
+
""":class:`Option` resolves its environment variable the same way as
|
|
3166
|
+
:func:`Parameter.resolve_envvar_value`, but it also supports
|
|
3167
|
+
:attr:`Context.auto_envvar_prefix`. If we could not find an environment from
|
|
3168
|
+
the :attr:`envvar` property, we fallback on :attr:`Context.auto_envvar_prefix`
|
|
3169
|
+
to build dynamiccaly the environment variable name using the
|
|
3170
|
+
:python:`{ctx.auto_envvar_prefix}_{self.name.upper()}` template.
|
|
3171
|
+
|
|
3172
|
+
:meta private:
|
|
3173
|
+
"""
|
|
3174
|
+
rv = super().resolve_envvar_value(ctx)
|
|
3175
|
+
|
|
3176
|
+
if rv is not None:
|
|
3177
|
+
return rv
|
|
3178
|
+
|
|
3179
|
+
if (
|
|
3180
|
+
self.allow_from_autoenv
|
|
3181
|
+
and ctx.auto_envvar_prefix is not None
|
|
3182
|
+
and self.name is not None
|
|
3183
|
+
):
|
|
3184
|
+
envvar = f"{ctx.auto_envvar_prefix}_{self.name.upper()}"
|
|
3185
|
+
rv = os.environ.get(envvar)
|
|
3186
|
+
|
|
3187
|
+
if rv:
|
|
3188
|
+
return rv
|
|
3189
|
+
|
|
3190
|
+
return None
|
|
3191
|
+
|
|
3192
|
+
def value_from_envvar(self, ctx: Context) -> t.Any:
|
|
3193
|
+
"""For :class:`Option`, this method processes the raw environment variable
|
|
3194
|
+
string the same way as :func:`Parameter.value_from_envvar` does.
|
|
3195
|
+
|
|
3196
|
+
But in the case of non-boolean flags, the value is analyzed to determine if the
|
|
3197
|
+
flag is activated or not, and returns a boolean of its activation, or the
|
|
3198
|
+
:attr:`flag_value` if the latter is set.
|
|
3199
|
+
|
|
3200
|
+
This method also takes care of repeated options (i.e. options with
|
|
3201
|
+
:attr:`multiple` set to ``True``).
|
|
3202
|
+
|
|
3203
|
+
:meta private:
|
|
3204
|
+
"""
|
|
3205
|
+
rv = self.resolve_envvar_value(ctx)
|
|
3206
|
+
|
|
3207
|
+
# Absent environment variable or an empty string is interpreted as unset.
|
|
3208
|
+
if rv is None:
|
|
3209
|
+
return None
|
|
3210
|
+
|
|
3211
|
+
# Non-boolean flags are more liberal in what they accept. But a flag being a
|
|
3212
|
+
# flag, its envvar value still needs to be analyzed to determine if the flag is
|
|
3213
|
+
# activated or not.
|
|
3214
|
+
if self.is_flag and not self.is_bool_flag:
|
|
3215
|
+
# If the flag_value is set and match the envvar value, return it
|
|
3216
|
+
# directly.
|
|
3217
|
+
if self.flag_value is not UNSET and rv == self.flag_value:
|
|
3218
|
+
return self.flag_value
|
|
3219
|
+
# Analyze the envvar value as a boolean to know if the flag is
|
|
3220
|
+
# activated or not.
|
|
3221
|
+
return types.BoolParamType.str_to_bool(rv)
|
|
3222
|
+
|
|
3223
|
+
# Split the envvar value if it is allowed to be repeated.
|
|
3224
|
+
value_depth = (self.nargs != 1) + bool(self.multiple)
|
|
3225
|
+
if value_depth > 0:
|
|
3226
|
+
multi_rv = self.type.split_envvar_value(rv)
|
|
3227
|
+
if self.multiple and self.nargs != 1:
|
|
3228
|
+
multi_rv = batch(multi_rv, self.nargs) # type: ignore[assignment]
|
|
3229
|
+
|
|
3230
|
+
return multi_rv
|
|
3231
|
+
|
|
3232
|
+
return rv
|
|
3233
|
+
|
|
3234
|
+
def consume_value(
|
|
3235
|
+
self, ctx: Context, opts: cabc.Mapping[str, Parameter]
|
|
3236
|
+
) -> tuple[t.Any, ParameterSource]:
|
|
3237
|
+
"""For :class:`Option`, the value can be collected from an interactive prompt
|
|
3238
|
+
if the option is a flag that needs a value (and the :attr:`prompt` property is
|
|
3239
|
+
set).
|
|
3240
|
+
|
|
3241
|
+
Additionally, this method handles flag option that are activated without a
|
|
3242
|
+
value, in which case the :attr:`flag_value` is returned.
|
|
3243
|
+
|
|
3244
|
+
:meta private:
|
|
3245
|
+
"""
|
|
3246
|
+
value, source = super().consume_value(ctx, opts)
|
|
3247
|
+
|
|
3248
|
+
# The parser will emit a sentinel value if the option is allowed to as a flag
|
|
3249
|
+
# without a value.
|
|
3250
|
+
if value is FLAG_NEEDS_VALUE:
|
|
3251
|
+
# If the option allows for a prompt, we start an interaction with the user.
|
|
3252
|
+
if self.prompt is not None and not ctx.resilient_parsing:
|
|
3253
|
+
value = self.prompt_for_value(ctx)
|
|
3254
|
+
source = ParameterSource.PROMPT
|
|
3255
|
+
# Else the flag takes its flag_value as value.
|
|
3256
|
+
else:
|
|
3257
|
+
value = self.flag_value
|
|
3258
|
+
source = ParameterSource.COMMANDLINE
|
|
3259
|
+
|
|
3260
|
+
# A flag which is activated always returns the flag value, unless the value
|
|
3261
|
+
# comes from the explicitly sets default.
|
|
3262
|
+
elif (
|
|
3263
|
+
self.is_flag
|
|
3264
|
+
and value is True
|
|
3265
|
+
and not self.is_bool_flag
|
|
3266
|
+
and source not in (ParameterSource.DEFAULT, ParameterSource.DEFAULT_MAP)
|
|
3267
|
+
):
|
|
3268
|
+
value = self.flag_value
|
|
3269
|
+
|
|
3270
|
+
# Re-interpret a multiple option which has been sent as-is by the parser.
|
|
3271
|
+
# Here we replace each occurrence of value-less flags (marked by the
|
|
3272
|
+
# FLAG_NEEDS_VALUE sentinel) with the flag_value.
|
|
3273
|
+
elif (
|
|
3274
|
+
self.multiple
|
|
3275
|
+
and value is not UNSET
|
|
3276
|
+
and source not in (ParameterSource.DEFAULT, ParameterSource.DEFAULT_MAP)
|
|
3277
|
+
and any(v is FLAG_NEEDS_VALUE for v in value)
|
|
3278
|
+
):
|
|
3279
|
+
value = [self.flag_value if v is FLAG_NEEDS_VALUE else v for v in value]
|
|
3280
|
+
source = ParameterSource.COMMANDLINE
|
|
3281
|
+
|
|
3282
|
+
# The value wasn't set, or used the param's default, prompt for one to the user
|
|
3283
|
+
# if prompting is enabled.
|
|
3284
|
+
elif (
|
|
3285
|
+
(
|
|
3286
|
+
value is UNSET
|
|
3287
|
+
or source in (ParameterSource.DEFAULT, ParameterSource.DEFAULT_MAP)
|
|
3288
|
+
)
|
|
3289
|
+
and self.prompt is not None
|
|
3290
|
+
and (self.required or self.prompt_required)
|
|
3291
|
+
and not ctx.resilient_parsing
|
|
3292
|
+
):
|
|
3293
|
+
value = self.prompt_for_value(ctx)
|
|
3294
|
+
source = ParameterSource.PROMPT
|
|
3295
|
+
|
|
3296
|
+
return value, source
|
|
3297
|
+
|
|
3298
|
+
def process_value(self, ctx: Context, value: t.Any) -> t.Any:
|
|
3299
|
+
# process_value has to be overridden on Options in order to capture
|
|
3300
|
+
# `value == UNSET` cases before `type_cast_value()` gets called.
|
|
3301
|
+
#
|
|
3302
|
+
# Refs:
|
|
3303
|
+
# https://github.com/pallets/click/issues/3069
|
|
3304
|
+
if self.is_flag and not self.required and self.is_bool_flag and value is UNSET:
|
|
3305
|
+
value = False
|
|
3306
|
+
|
|
3307
|
+
if self.callback is not None:
|
|
3308
|
+
value = self.callback(ctx, self, value)
|
|
3309
|
+
|
|
3310
|
+
return value
|
|
3311
|
+
|
|
3312
|
+
# in the normal case, rely on Parameter.process_value
|
|
3313
|
+
return super().process_value(ctx, value)
|
|
3314
|
+
|
|
3315
|
+
|
|
3316
|
+
class Argument(Parameter):
|
|
3317
|
+
"""Arguments are positional parameters to a command. They generally
|
|
3318
|
+
provide fewer features than options but can have infinite ``nargs``
|
|
3319
|
+
and are required by default.
|
|
3320
|
+
|
|
3321
|
+
All parameters are passed onwards to the constructor of :class:`Parameter`.
|
|
3322
|
+
"""
|
|
3323
|
+
|
|
3324
|
+
param_type_name = "argument"
|
|
3325
|
+
|
|
3326
|
+
def __init__(
|
|
3327
|
+
self,
|
|
3328
|
+
param_decls: cabc.Sequence[str],
|
|
3329
|
+
required: bool | None = None,
|
|
3330
|
+
**attrs: t.Any,
|
|
3331
|
+
) -> None:
|
|
3332
|
+
# Auto-detect the requirement status of the argument if not explicitly set.
|
|
3333
|
+
if required is None:
|
|
3334
|
+
# The argument gets automatically required if it has no explicit default
|
|
3335
|
+
# value set and is setup to match at least one value.
|
|
3336
|
+
if attrs.get("default", UNSET) is UNSET:
|
|
3337
|
+
required = attrs.get("nargs", 1) > 0
|
|
3338
|
+
# If the argument has a default value, it is not required.
|
|
3339
|
+
else:
|
|
3340
|
+
required = False
|
|
3341
|
+
|
|
3342
|
+
if "multiple" in attrs:
|
|
3343
|
+
raise TypeError("__init__() got an unexpected keyword argument 'multiple'.")
|
|
3344
|
+
|
|
3345
|
+
super().__init__(param_decls, required=required, **attrs)
|
|
3346
|
+
|
|
3347
|
+
@property
|
|
3348
|
+
def human_readable_name(self) -> str:
|
|
3349
|
+
if self.metavar is not None:
|
|
3350
|
+
return self.metavar
|
|
3351
|
+
return self.name.upper() # type: ignore
|
|
3352
|
+
|
|
3353
|
+
def make_metavar(self, ctx: Context) -> str:
|
|
3354
|
+
if self.metavar is not None:
|
|
3355
|
+
return self.metavar
|
|
3356
|
+
var = self.type.get_metavar(param=self, ctx=ctx)
|
|
3357
|
+
if not var:
|
|
3358
|
+
var = self.name.upper() # type: ignore
|
|
3359
|
+
if self.deprecated:
|
|
3360
|
+
var += "!"
|
|
3361
|
+
if not self.required:
|
|
3362
|
+
var = f"[{var}]"
|
|
3363
|
+
if self.nargs != 1:
|
|
3364
|
+
var += "..."
|
|
3365
|
+
return var
|
|
3366
|
+
|
|
3367
|
+
def _parse_decls(
|
|
3368
|
+
self, decls: cabc.Sequence[str], expose_value: bool
|
|
3369
|
+
) -> tuple[str | None, list[str], list[str]]:
|
|
3370
|
+
if not decls:
|
|
3371
|
+
if not expose_value:
|
|
3372
|
+
return None, [], []
|
|
3373
|
+
raise TypeError("Argument is marked as exposed, but does not have a name.")
|
|
3374
|
+
if len(decls) == 1:
|
|
3375
|
+
name = arg = decls[0]
|
|
3376
|
+
name = name.replace("-", "_").lower()
|
|
3377
|
+
else:
|
|
3378
|
+
raise TypeError(
|
|
3379
|
+
"Arguments take exactly one parameter declaration, got"
|
|
3380
|
+
f" {len(decls)}: {decls}."
|
|
3381
|
+
)
|
|
3382
|
+
return name, [arg], []
|
|
3383
|
+
|
|
3384
|
+
def get_usage_pieces(self, ctx: Context) -> list[str]:
|
|
3385
|
+
return [self.make_metavar(ctx)]
|
|
3386
|
+
|
|
3387
|
+
def get_error_hint(self, ctx: Context) -> str:
|
|
3388
|
+
return f"'{self.make_metavar(ctx)}'"
|
|
3389
|
+
|
|
3390
|
+
def add_to_parser(self, parser: _OptionParser, ctx: Context) -> None:
|
|
3391
|
+
parser.add_argument(dest=self.name, nargs=self.nargs, obj=self)
|
|
3392
|
+
|
|
3393
|
+
|
|
3394
|
+
def __getattr__(name: str) -> object:
|
|
3395
|
+
import warnings
|
|
3396
|
+
|
|
3397
|
+
if name == "BaseCommand":
|
|
3398
|
+
warnings.warn(
|
|
3399
|
+
"'BaseCommand' is deprecated and will be removed in Click 9.0. Use"
|
|
3400
|
+
" 'Command' instead.",
|
|
3401
|
+
DeprecationWarning,
|
|
3402
|
+
stacklevel=2,
|
|
3403
|
+
)
|
|
3404
|
+
return _BaseCommand
|
|
3405
|
+
|
|
3406
|
+
if name == "MultiCommand":
|
|
3407
|
+
warnings.warn(
|
|
3408
|
+
"'MultiCommand' is deprecated and will be removed in Click 9.0. Use"
|
|
3409
|
+
" 'Group' instead.",
|
|
3410
|
+
DeprecationWarning,
|
|
3411
|
+
stacklevel=2,
|
|
3412
|
+
)
|
|
3413
|
+
return _MultiCommand
|
|
3414
|
+
|
|
3415
|
+
raise AttributeError(name)
|