ciphertoken 0.1.2__tar.gz
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.
- ciphertoken-0.1.2/.github/workflows/build.yml +88 -0
- ciphertoken-0.1.2/.gitignore +7 -0
- ciphertoken-0.1.2/.venv-py312/bin/Activate.ps1 +247 -0
- ciphertoken-0.1.2/.venv-py312/bin/activate +76 -0
- ciphertoken-0.1.2/.venv-py312/bin/activate.csh +27 -0
- ciphertoken-0.1.2/.venv-py312/bin/activate.fish +69 -0
- ciphertoken-0.1.2/.venv-py312/bin/pip +8 -0
- ciphertoken-0.1.2/.venv-py312/bin/pip3 +8 -0
- ciphertoken-0.1.2/.venv-py312/bin/pip3.12 +8 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/__init__.py +13 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/__main__.py +24 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/build_env.py +322 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cache.py +290 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +4 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +176 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +240 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1075 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +27 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +171 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/main.py +80 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +134 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/parser.py +294 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +94 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +329 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +159 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +132 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/cache.py +228 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/check.py +67 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/completion.py +130 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +280 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/debug.py +201 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +109 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/hash.py +59 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/help.py +41 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/index.py +139 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/install.py +784 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/list.py +375 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/search.py +172 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/show.py +224 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +114 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +182 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/configuration.py +383 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/base.py +53 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +29 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +158 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/exceptions.py +809 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/__init__.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/collector.py +494 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1029 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/index/sources.py +284 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +456 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +172 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +214 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/locations/base.py +81 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +128 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +86 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/base.py +688 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +85 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +228 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +189 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +301 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/__init__.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +224 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +56 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/link.py +604 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +127 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +53 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/target_python.py +121 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/models/wheel.py +118 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/__init__.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/auth.py +566 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/cache.py +118 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/download.py +187 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/session.py +523 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +62 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +138 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +39 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/check.py +181 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +256 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +741 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +732 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/pyproject.py +185 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/__init__.py +90 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/constructors.py +560 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_file.py +623 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_install.py +934 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_set.py +82 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +633 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +597 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +139 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +574 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +823 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +174 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +258 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +81 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +245 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +317 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +252 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/compat.py +79 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +188 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +11 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +124 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +80 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +84 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +149 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +27 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +101 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +147 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/logging.py +354 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/misc.py +773 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +58 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/retry.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +245 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +296 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +337 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +134 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +112 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/git.py +527 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +163 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +324 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +688 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +354 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/__init__.py +116 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +29 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +161 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +182 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +500 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4929 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +114 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/database.py +1329 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/index.py +508 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/locators.py +1295 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/manifest.py +384 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/markers.py +162 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/metadata.py +1031 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/version.py +750 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distlib/wheel.py +1100 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4243 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8681 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +110 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +263 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +354 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +194 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +145 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +759 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +331 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +863 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +91 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1020 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +617 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +163 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +582 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +298 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +144 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +269 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +16 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +272 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +987 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +685 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +518 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +160 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +349 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +185 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +589 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +719 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +17 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +78 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1037 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1096 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +273 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +159 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/align.py +312 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/box.py +480 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2661 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/control.py +225 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +191 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +37 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +96 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/live.py +375 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +112 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +318 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +138 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/style.py +796 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +966 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1007 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +797 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +770 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +112 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +316 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +66 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/typing_extensions.py +3641 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip/py.typed +4 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +806 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/INSTALLER +1 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/LICENSE.txt +20 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/METADATA +90 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/RECORD +854 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/REQUESTED +0 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/WHEEL +5 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/entry_points.txt +3 -0
- ciphertoken-0.1.2/.venv-py312/lib/python3.12/site-packages/pip-25.0.1.dist-info/top_level.txt +1 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/__init__.py +13 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/__main__.py +24 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/__pip-runner__.py +50 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/__init__.py +18 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/build_env.py +322 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cache.py +290 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/__init__.py +4 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/autocompletion.py +176 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/base_command.py +240 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1075 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/command_context.py +27 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/index_command.py +171 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/main.py +80 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/main_parser.py +134 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/parser.py +294 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/progress_bars.py +94 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/req_command.py +329 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/spinners.py +159 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/__init__.py +132 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/cache.py +228 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/check.py +67 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/completion.py +130 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/configuration.py +280 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/debug.py +201 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/freeze.py +109 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/hash.py +59 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/help.py +41 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/index.py +139 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/install.py +784 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/list.py +375 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/search.py +172 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/show.py +224 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/uninstall.py +114 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/commands/wheel.py +182 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/configuration.py +383 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/base.py +53 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/installed.py +29 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/sdist.py +158 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/distributions/wheel.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/exceptions.py +809 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/__init__.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/collector.py +494 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/package_finder.py +1029 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/index/sources.py +284 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/__init__.py +456 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/_distutils.py +172 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +214 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/locations/base.py +81 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/main.py +12 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/__init__.py +128 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/_json.py +86 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/base.py +688 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +85 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +228 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +189 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +301 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/__init__.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/direct_url.py +224 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/index.py +28 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/installation_report.py +56 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/link.py +604 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/search_scope.py +127 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/selection_prefs.py +53 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/target_python.py +121 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/models/wheel.py +118 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/__init__.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/auth.py +566 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/cache.py +118 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/download.py +187 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +210 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/session.py +523 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/network/xmlrpc.py +62 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +138 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata.py +39 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/metadata_legacy.py +74 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel.py +37 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +46 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/build/wheel_legacy.py +102 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/check.py +181 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/freeze.py +256 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/__init__.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/editable_legacy.py +47 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/install/wheel.py +741 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/operations/prepare.py +732 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/pyproject.py +185 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/__init__.py +90 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/constructors.py +560 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_file.py +623 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_install.py +934 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_set.py +82 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/req/req_uninstall.py +633 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +597 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +139 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +574 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +823 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +174 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +258 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +81 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +245 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +317 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/self_outdated_check.py +252 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/compat.py +79 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +188 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/datetime.py +11 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/deprecation.py +124 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/egg_link.py +80 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/entrypoints.py +84 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/filesystem.py +149 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/filetypes.py +27 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/glibc.py +101 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/hashes.py +147 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/logging.py +354 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/misc.py +773 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/packaging.py +58 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/retry.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/setuptools_build.py +146 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/subprocess.py +245 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/temp_dir.py +296 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/unpacking.py +337 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/virtualenv.py +104 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/utils/wheel.py +134 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/bazaar.py +112 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/git.py +527 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/mercurial.py +163 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/subversion.py +324 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +688 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_internal/wheel_builder.py +354 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/__init__.py +116 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +29 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +161 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +182 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +500 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +119 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4929 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/core.py +114 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/database.py +1329 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/index.py +508 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/locators.py +1295 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/manifest.py +384 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/markers.py +162 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/metadata.py +1031 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/version.py +750 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distlib/wheel.py +1100 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4243 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8681 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +110 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +263 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_parser.py +354 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_structures.py +61 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +194 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +145 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +759 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/markers.py +331 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/metadata.py +863 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/requirements.py +91 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1020 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/tags.py +617 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/utils.py +163 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/packaging/version.py +582 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/api.py +298 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +144 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +269 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/version.py +16 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +272 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/cmdline.py +668 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/bbcode.py +108 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/groff.py +170 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/html.py +987 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/img.py +685 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/irc.py +154 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/latex.py +518 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/other.py +160 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +83 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/rtf.py +349 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/svg.py +185 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal.py +127 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/formatters/terminal256.py +338 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +589 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1198 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/adapters.py +719 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/certs.py +17 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/compat.py +78 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/models.py +1037 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/requests/utils.py +1096 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +26 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +6 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +133 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +43 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/resolvers.py +547 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +170 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/__main__.py +273 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_ratio.py +159 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/align.py +312 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/box.py +480 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/console.py +2661 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/control.py +225 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/default_styles.py +191 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/diagnose.py +37 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/emoji.py +96 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/live.py +375 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/live_render.py +112 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/panel.py +318 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/spinner.py +138 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/style.py +796 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/syntax.py +966 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/table.py +1007 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/traceback.py +797 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_parser.py +770 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_re.py +112 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_api.py +316 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +66 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/typing_extensions.py +3641 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/_vendor/vendor.txt +18 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip/py.typed +4 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/AUTHORS.txt +806 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/INSTALLER +1 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/LICENSE.txt +20 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/METADATA +90 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/RECORD +854 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/REQUESTED +0 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/WHEEL +5 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/entry_points.txt +3 -0
- ciphertoken-0.1.2/.venv-py312/lib64/python3.12/site-packages/pip-25.0.1.dist-info/top_level.txt +1 -0
- ciphertoken-0.1.2/.venv-py312/pyvenv.cfg +5 -0
- ciphertoken-0.1.2/Cargo.lock +1102 -0
- ciphertoken-0.1.2/Cargo.toml +32 -0
- ciphertoken-0.1.2/PKG-INFO +171 -0
- ciphertoken-0.1.2/README.md +157 -0
- ciphertoken-0.1.2/ciphertoken/__init__.pyi +5 -0
- ciphertoken-0.1.2/ciphertoken/algorithms.pyi +12 -0
- ciphertoken-0.1.2/ciphertoken/ciphertoken.pyi +26 -0
- ciphertoken-0.1.2/ciphertoken/secret.pyi +7 -0
- ciphertoken-0.1.2/ciphertoken/time.pyi +7 -0
- ciphertoken-0.1.2/ciphertoken/utils.pyi +7 -0
- ciphertoken-0.1.2/logo.png +0 -0
- ciphertoken-0.1.2/pyproject.toml +24 -0
- ciphertoken-0.1.2/src/algorithms.rs +29 -0
- ciphertoken-0.1.2/src/lib.rs +920 -0
- ciphertoken-0.1.2/src/secret.rs +97 -0
- ciphertoken-0.1.2/src/time.rs +46 -0
- ciphertoken-0.1.2/src/utils.rs +15 -0
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
name: CI/CD
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
publish_to_pypi:
|
|
7
|
+
description: Publish to PyPI
|
|
8
|
+
required: true
|
|
9
|
+
type: boolean
|
|
10
|
+
default: false
|
|
11
|
+
|
|
12
|
+
jobs:
|
|
13
|
+
build:
|
|
14
|
+
strategy:
|
|
15
|
+
fail-fast: false
|
|
16
|
+
matrix:
|
|
17
|
+
os:
|
|
18
|
+
- ubuntu-latest
|
|
19
|
+
- windows-latest
|
|
20
|
+
- macos-latest
|
|
21
|
+
|
|
22
|
+
runs-on: ${{ matrix.os }}
|
|
23
|
+
|
|
24
|
+
steps:
|
|
25
|
+
- uses: actions/checkout@v4
|
|
26
|
+
|
|
27
|
+
- name: Setup Python
|
|
28
|
+
uses: actions/setup-python@v5
|
|
29
|
+
with:
|
|
30
|
+
python-version: "3.12"
|
|
31
|
+
|
|
32
|
+
- name: Build Wheels
|
|
33
|
+
uses: PyO3/maturin-action@v1
|
|
34
|
+
env:
|
|
35
|
+
PYO3_USE_ABI3_FORWARD_COMPATIBILITY: "1"
|
|
36
|
+
with:
|
|
37
|
+
command: build
|
|
38
|
+
args: >
|
|
39
|
+
--release
|
|
40
|
+
--out dist
|
|
41
|
+
--interpreter python3.12
|
|
42
|
+
manylinux: auto
|
|
43
|
+
|
|
44
|
+
- uses: actions/upload-artifact@v4
|
|
45
|
+
with:
|
|
46
|
+
name: wheels-${{ matrix.os }}
|
|
47
|
+
path: dist
|
|
48
|
+
|
|
49
|
+
sdist:
|
|
50
|
+
runs-on: ubuntu-latest
|
|
51
|
+
|
|
52
|
+
steps:
|
|
53
|
+
- uses: actions/checkout@v4
|
|
54
|
+
|
|
55
|
+
- uses: PyO3/maturin-action@v1
|
|
56
|
+
with:
|
|
57
|
+
command: sdist
|
|
58
|
+
args: --out dist
|
|
59
|
+
|
|
60
|
+
- uses: actions/upload-artifact@v4
|
|
61
|
+
with:
|
|
62
|
+
name: sdist
|
|
63
|
+
path: dist
|
|
64
|
+
|
|
65
|
+
publish:
|
|
66
|
+
if: ${{ inputs.publish_to_pypi }}
|
|
67
|
+
needs:
|
|
68
|
+
- build
|
|
69
|
+
- sdist
|
|
70
|
+
|
|
71
|
+
runs-on: ubuntu-latest
|
|
72
|
+
|
|
73
|
+
permissions:
|
|
74
|
+
id-token: write
|
|
75
|
+
|
|
76
|
+
steps:
|
|
77
|
+
- uses: actions/download-artifact@v4
|
|
78
|
+
with:
|
|
79
|
+
pattern: wheels-*
|
|
80
|
+
merge-multiple: true
|
|
81
|
+
path: dist
|
|
82
|
+
|
|
83
|
+
- uses: actions/download-artifact@v4
|
|
84
|
+
with:
|
|
85
|
+
name: sdist
|
|
86
|
+
path: dist
|
|
87
|
+
|
|
88
|
+
- uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -0,0 +1,247 @@
|
|
|
1
|
+
<#
|
|
2
|
+
.Synopsis
|
|
3
|
+
Activate a Python virtual environment for the current PowerShell session.
|
|
4
|
+
|
|
5
|
+
.Description
|
|
6
|
+
Pushes the python executable for a virtual environment to the front of the
|
|
7
|
+
$Env:PATH environment variable and sets the prompt to signify that you are
|
|
8
|
+
in a Python virtual environment. Makes use of the command line switches as
|
|
9
|
+
well as the `pyvenv.cfg` file values present in the virtual environment.
|
|
10
|
+
|
|
11
|
+
.Parameter VenvDir
|
|
12
|
+
Path to the directory that contains the virtual environment to activate. The
|
|
13
|
+
default value for this is the parent of the directory that the Activate.ps1
|
|
14
|
+
script is located within.
|
|
15
|
+
|
|
16
|
+
.Parameter Prompt
|
|
17
|
+
The prompt prefix to display when this virtual environment is activated. By
|
|
18
|
+
default, this prompt is the name of the virtual environment folder (VenvDir)
|
|
19
|
+
surrounded by parentheses and followed by a single space (ie. '(.venv) ').
|
|
20
|
+
|
|
21
|
+
.Example
|
|
22
|
+
Activate.ps1
|
|
23
|
+
Activates the Python virtual environment that contains the Activate.ps1 script.
|
|
24
|
+
|
|
25
|
+
.Example
|
|
26
|
+
Activate.ps1 -Verbose
|
|
27
|
+
Activates the Python virtual environment that contains the Activate.ps1 script,
|
|
28
|
+
and shows extra information about the activation as it executes.
|
|
29
|
+
|
|
30
|
+
.Example
|
|
31
|
+
Activate.ps1 -VenvDir C:\Users\MyUser\Common\.venv
|
|
32
|
+
Activates the Python virtual environment located in the specified location.
|
|
33
|
+
|
|
34
|
+
.Example
|
|
35
|
+
Activate.ps1 -Prompt "MyPython"
|
|
36
|
+
Activates the Python virtual environment that contains the Activate.ps1 script,
|
|
37
|
+
and prefixes the current prompt with the specified string (surrounded in
|
|
38
|
+
parentheses) while the virtual environment is active.
|
|
39
|
+
|
|
40
|
+
.Notes
|
|
41
|
+
On Windows, it may be required to enable this Activate.ps1 script by setting the
|
|
42
|
+
execution policy for the user. You can do this by issuing the following PowerShell
|
|
43
|
+
command:
|
|
44
|
+
|
|
45
|
+
PS C:\> Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope CurrentUser
|
|
46
|
+
|
|
47
|
+
For more information on Execution Policies:
|
|
48
|
+
https://go.microsoft.com/fwlink/?LinkID=135170
|
|
49
|
+
|
|
50
|
+
#>
|
|
51
|
+
Param(
|
|
52
|
+
[Parameter(Mandatory = $false)]
|
|
53
|
+
[String]
|
|
54
|
+
$VenvDir,
|
|
55
|
+
[Parameter(Mandatory = $false)]
|
|
56
|
+
[String]
|
|
57
|
+
$Prompt
|
|
58
|
+
)
|
|
59
|
+
|
|
60
|
+
<# Function declarations --------------------------------------------------- #>
|
|
61
|
+
|
|
62
|
+
<#
|
|
63
|
+
.Synopsis
|
|
64
|
+
Remove all shell session elements added by the Activate script, including the
|
|
65
|
+
addition of the virtual environment's Python executable from the beginning of
|
|
66
|
+
the PATH variable.
|
|
67
|
+
|
|
68
|
+
.Parameter NonDestructive
|
|
69
|
+
If present, do not remove this function from the global namespace for the
|
|
70
|
+
session.
|
|
71
|
+
|
|
72
|
+
#>
|
|
73
|
+
function global:deactivate ([switch]$NonDestructive) {
|
|
74
|
+
# Revert to original values
|
|
75
|
+
|
|
76
|
+
# The prior prompt:
|
|
77
|
+
if (Test-Path -Path Function:_OLD_VIRTUAL_PROMPT) {
|
|
78
|
+
Copy-Item -Path Function:_OLD_VIRTUAL_PROMPT -Destination Function:prompt
|
|
79
|
+
Remove-Item -Path Function:_OLD_VIRTUAL_PROMPT
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
# The prior PYTHONHOME:
|
|
83
|
+
if (Test-Path -Path Env:_OLD_VIRTUAL_PYTHONHOME) {
|
|
84
|
+
Copy-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME -Destination Env:PYTHONHOME
|
|
85
|
+
Remove-Item -Path Env:_OLD_VIRTUAL_PYTHONHOME
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
# The prior PATH:
|
|
89
|
+
if (Test-Path -Path Env:_OLD_VIRTUAL_PATH) {
|
|
90
|
+
Copy-Item -Path Env:_OLD_VIRTUAL_PATH -Destination Env:PATH
|
|
91
|
+
Remove-Item -Path Env:_OLD_VIRTUAL_PATH
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
# Just remove the VIRTUAL_ENV altogether:
|
|
95
|
+
if (Test-Path -Path Env:VIRTUAL_ENV) {
|
|
96
|
+
Remove-Item -Path env:VIRTUAL_ENV
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
# Just remove VIRTUAL_ENV_PROMPT altogether.
|
|
100
|
+
if (Test-Path -Path Env:VIRTUAL_ENV_PROMPT) {
|
|
101
|
+
Remove-Item -Path env:VIRTUAL_ENV_PROMPT
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
# Just remove the _PYTHON_VENV_PROMPT_PREFIX altogether:
|
|
105
|
+
if (Get-Variable -Name "_PYTHON_VENV_PROMPT_PREFIX" -ErrorAction SilentlyContinue) {
|
|
106
|
+
Remove-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Scope Global -Force
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
# Leave deactivate function in the global namespace if requested:
|
|
110
|
+
if (-not $NonDestructive) {
|
|
111
|
+
Remove-Item -Path function:deactivate
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
<#
|
|
116
|
+
.Description
|
|
117
|
+
Get-PyVenvConfig parses the values from the pyvenv.cfg file located in the
|
|
118
|
+
given folder, and returns them in a map.
|
|
119
|
+
|
|
120
|
+
For each line in the pyvenv.cfg file, if that line can be parsed into exactly
|
|
121
|
+
two strings separated by `=` (with any amount of whitespace surrounding the =)
|
|
122
|
+
then it is considered a `key = value` line. The left hand string is the key,
|
|
123
|
+
the right hand is the value.
|
|
124
|
+
|
|
125
|
+
If the value starts with a `'` or a `"` then the first and last character is
|
|
126
|
+
stripped from the value before being captured.
|
|
127
|
+
|
|
128
|
+
.Parameter ConfigDir
|
|
129
|
+
Path to the directory that contains the `pyvenv.cfg` file.
|
|
130
|
+
#>
|
|
131
|
+
function Get-PyVenvConfig(
|
|
132
|
+
[String]
|
|
133
|
+
$ConfigDir
|
|
134
|
+
) {
|
|
135
|
+
Write-Verbose "Given ConfigDir=$ConfigDir, obtain values in pyvenv.cfg"
|
|
136
|
+
|
|
137
|
+
# Ensure the file exists, and issue a warning if it doesn't (but still allow the function to continue).
|
|
138
|
+
$pyvenvConfigPath = Join-Path -Resolve -Path $ConfigDir -ChildPath 'pyvenv.cfg' -ErrorAction Continue
|
|
139
|
+
|
|
140
|
+
# An empty map will be returned if no config file is found.
|
|
141
|
+
$pyvenvConfig = @{ }
|
|
142
|
+
|
|
143
|
+
if ($pyvenvConfigPath) {
|
|
144
|
+
|
|
145
|
+
Write-Verbose "File exists, parse `key = value` lines"
|
|
146
|
+
$pyvenvConfigContent = Get-Content -Path $pyvenvConfigPath
|
|
147
|
+
|
|
148
|
+
$pyvenvConfigContent | ForEach-Object {
|
|
149
|
+
$keyval = $PSItem -split "\s*=\s*", 2
|
|
150
|
+
if ($keyval[0] -and $keyval[1]) {
|
|
151
|
+
$val = $keyval[1]
|
|
152
|
+
|
|
153
|
+
# Remove extraneous quotations around a string value.
|
|
154
|
+
if ("'""".Contains($val.Substring(0, 1))) {
|
|
155
|
+
$val = $val.Substring(1, $val.Length - 2)
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
$pyvenvConfig[$keyval[0]] = $val
|
|
159
|
+
Write-Verbose "Adding Key: '$($keyval[0])'='$val'"
|
|
160
|
+
}
|
|
161
|
+
}
|
|
162
|
+
}
|
|
163
|
+
return $pyvenvConfig
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
<# Begin Activate script --------------------------------------------------- #>
|
|
168
|
+
|
|
169
|
+
# Determine the containing directory of this script
|
|
170
|
+
$VenvExecPath = Split-Path -Parent $MyInvocation.MyCommand.Definition
|
|
171
|
+
$VenvExecDir = Get-Item -Path $VenvExecPath
|
|
172
|
+
|
|
173
|
+
Write-Verbose "Activation script is located in path: '$VenvExecPath'"
|
|
174
|
+
Write-Verbose "VenvExecDir Fullname: '$($VenvExecDir.FullName)"
|
|
175
|
+
Write-Verbose "VenvExecDir Name: '$($VenvExecDir.Name)"
|
|
176
|
+
|
|
177
|
+
# Set values required in priority: CmdLine, ConfigFile, Default
|
|
178
|
+
# First, get the location of the virtual environment, it might not be
|
|
179
|
+
# VenvExecDir if specified on the command line.
|
|
180
|
+
if ($VenvDir) {
|
|
181
|
+
Write-Verbose "VenvDir given as parameter, using '$VenvDir' to determine values"
|
|
182
|
+
}
|
|
183
|
+
else {
|
|
184
|
+
Write-Verbose "VenvDir not given as a parameter, using parent directory name as VenvDir."
|
|
185
|
+
$VenvDir = $VenvExecDir.Parent.FullName.TrimEnd("\\/")
|
|
186
|
+
Write-Verbose "VenvDir=$VenvDir"
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
# Next, read the `pyvenv.cfg` file to determine any required value such
|
|
190
|
+
# as `prompt`.
|
|
191
|
+
$pyvenvCfg = Get-PyVenvConfig -ConfigDir $VenvDir
|
|
192
|
+
|
|
193
|
+
# Next, set the prompt from the command line, or the config file, or
|
|
194
|
+
# just use the name of the virtual environment folder.
|
|
195
|
+
if ($Prompt) {
|
|
196
|
+
Write-Verbose "Prompt specified as argument, using '$Prompt'"
|
|
197
|
+
}
|
|
198
|
+
else {
|
|
199
|
+
Write-Verbose "Prompt not specified as argument to script, checking pyvenv.cfg value"
|
|
200
|
+
if ($pyvenvCfg -and $pyvenvCfg['prompt']) {
|
|
201
|
+
Write-Verbose " Setting based on value in pyvenv.cfg='$($pyvenvCfg['prompt'])'"
|
|
202
|
+
$Prompt = $pyvenvCfg['prompt'];
|
|
203
|
+
}
|
|
204
|
+
else {
|
|
205
|
+
Write-Verbose " Setting prompt based on parent's directory's name. (Is the directory name passed to venv module when creating the virtual environment)"
|
|
206
|
+
Write-Verbose " Got leaf-name of $VenvDir='$(Split-Path -Path $venvDir -Leaf)'"
|
|
207
|
+
$Prompt = Split-Path -Path $venvDir -Leaf
|
|
208
|
+
}
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
Write-Verbose "Prompt = '$Prompt'"
|
|
212
|
+
Write-Verbose "VenvDir='$VenvDir'"
|
|
213
|
+
|
|
214
|
+
# Deactivate any currently active virtual environment, but leave the
|
|
215
|
+
# deactivate function in place.
|
|
216
|
+
deactivate -nondestructive
|
|
217
|
+
|
|
218
|
+
# Now set the environment variable VIRTUAL_ENV, used by many tools to determine
|
|
219
|
+
# that there is an activated venv.
|
|
220
|
+
$env:VIRTUAL_ENV = $VenvDir
|
|
221
|
+
|
|
222
|
+
if (-not $Env:VIRTUAL_ENV_DISABLE_PROMPT) {
|
|
223
|
+
|
|
224
|
+
Write-Verbose "Setting prompt to '$Prompt'"
|
|
225
|
+
|
|
226
|
+
# Set the prompt to include the env name
|
|
227
|
+
# Make sure _OLD_VIRTUAL_PROMPT is global
|
|
228
|
+
function global:_OLD_VIRTUAL_PROMPT { "" }
|
|
229
|
+
Copy-Item -Path function:prompt -Destination function:_OLD_VIRTUAL_PROMPT
|
|
230
|
+
New-Variable -Name _PYTHON_VENV_PROMPT_PREFIX -Description "Python virtual environment prompt prefix" -Scope Global -Option ReadOnly -Visibility Public -Value $Prompt
|
|
231
|
+
|
|
232
|
+
function global:prompt {
|
|
233
|
+
Write-Host -NoNewline -ForegroundColor Green "($_PYTHON_VENV_PROMPT_PREFIX) "
|
|
234
|
+
_OLD_VIRTUAL_PROMPT
|
|
235
|
+
}
|
|
236
|
+
$env:VIRTUAL_ENV_PROMPT = $Prompt
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
# Clear PYTHONHOME
|
|
240
|
+
if (Test-Path -Path Env:PYTHONHOME) {
|
|
241
|
+
Copy-Item -Path Env:PYTHONHOME -Destination Env:_OLD_VIRTUAL_PYTHONHOME
|
|
242
|
+
Remove-Item -Path Env:PYTHONHOME
|
|
243
|
+
}
|
|
244
|
+
|
|
245
|
+
# Add the venv to the PATH
|
|
246
|
+
Copy-Item -Path Env:PATH -Destination Env:_OLD_VIRTUAL_PATH
|
|
247
|
+
$Env:PATH = "$VenvExecDir$([System.IO.Path]::PathSeparator)$Env:PATH"
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
# This file must be used with "source bin/activate" *from bash*
|
|
2
|
+
# You cannot run it directly
|
|
3
|
+
|
|
4
|
+
deactivate () {
|
|
5
|
+
# reset old environment variables
|
|
6
|
+
if [ -n "${_OLD_VIRTUAL_PATH:-}" ] ; then
|
|
7
|
+
PATH="${_OLD_VIRTUAL_PATH:-}"
|
|
8
|
+
export PATH
|
|
9
|
+
unset _OLD_VIRTUAL_PATH
|
|
10
|
+
fi
|
|
11
|
+
if [ -n "${_OLD_VIRTUAL_PYTHONHOME:-}" ] ; then
|
|
12
|
+
PYTHONHOME="${_OLD_VIRTUAL_PYTHONHOME:-}"
|
|
13
|
+
export PYTHONHOME
|
|
14
|
+
unset _OLD_VIRTUAL_PYTHONHOME
|
|
15
|
+
fi
|
|
16
|
+
|
|
17
|
+
# Call hash to forget past locations. Without forgetting
|
|
18
|
+
# past locations the $PATH changes we made may not be respected.
|
|
19
|
+
# See "man bash" for more details. hash is usually a builtin of your shell
|
|
20
|
+
hash -r 2> /dev/null
|
|
21
|
+
|
|
22
|
+
if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
|
|
23
|
+
PS1="${_OLD_VIRTUAL_PS1:-}"
|
|
24
|
+
export PS1
|
|
25
|
+
unset _OLD_VIRTUAL_PS1
|
|
26
|
+
fi
|
|
27
|
+
|
|
28
|
+
unset VIRTUAL_ENV
|
|
29
|
+
unset VIRTUAL_ENV_PROMPT
|
|
30
|
+
if [ ! "${1:-}" = "nondestructive" ] ; then
|
|
31
|
+
# Self destruct!
|
|
32
|
+
unset -f deactivate
|
|
33
|
+
fi
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
# unset irrelevant variables
|
|
37
|
+
deactivate nondestructive
|
|
38
|
+
|
|
39
|
+
# on Windows, a path can contain colons and backslashes and has to be converted:
|
|
40
|
+
case "$(uname)" in
|
|
41
|
+
CYGWIN*|MSYS*|MINGW*)
|
|
42
|
+
# transform D:\path\to\venv to /d/path/to/venv on MSYS and MINGW
|
|
43
|
+
# and to /cygdrive/d/path/to/venv on Cygwin
|
|
44
|
+
VIRTUAL_ENV=$(cygpath /home/ehsan/Desktop/rustoken-main/.venv-py312)
|
|
45
|
+
export VIRTUAL_ENV
|
|
46
|
+
;;
|
|
47
|
+
*)
|
|
48
|
+
# use the path as-is
|
|
49
|
+
export VIRTUAL_ENV=/home/ehsan/Desktop/rustoken-main/.venv-py312
|
|
50
|
+
;;
|
|
51
|
+
esac
|
|
52
|
+
|
|
53
|
+
_OLD_VIRTUAL_PATH="$PATH"
|
|
54
|
+
PATH="$VIRTUAL_ENV/"bin":$PATH"
|
|
55
|
+
export PATH
|
|
56
|
+
|
|
57
|
+
VIRTUAL_ENV_PROMPT='(.venv-py312) '
|
|
58
|
+
export VIRTUAL_ENV_PROMPT
|
|
59
|
+
|
|
60
|
+
# unset PYTHONHOME if set
|
|
61
|
+
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
|
|
62
|
+
# could use `if (set -u; : $PYTHONHOME) ;` in bash
|
|
63
|
+
if [ -n "${PYTHONHOME:-}" ] ; then
|
|
64
|
+
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
|
|
65
|
+
unset PYTHONHOME
|
|
66
|
+
fi
|
|
67
|
+
|
|
68
|
+
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
|
|
69
|
+
_OLD_VIRTUAL_PS1="${PS1:-}"
|
|
70
|
+
PS1="("'(.venv-py312) '") ${PS1:-}"
|
|
71
|
+
export PS1
|
|
72
|
+
fi
|
|
73
|
+
|
|
74
|
+
# Call hash to forget past commands. Without forgetting
|
|
75
|
+
# past commands the $PATH changes we made may not be respected
|
|
76
|
+
hash -r 2> /dev/null
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# This file must be used with "source bin/activate.csh" *from csh*.
|
|
2
|
+
# You cannot run it directly.
|
|
3
|
+
|
|
4
|
+
# Created by Davide Di Blasi <davidedb@gmail.com>.
|
|
5
|
+
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
|
|
6
|
+
|
|
7
|
+
alias deactivate 'test $?_OLD_VIRTUAL_PATH != 0 && setenv PATH "$_OLD_VIRTUAL_PATH" && unset _OLD_VIRTUAL_PATH; rehash; test $?_OLD_VIRTUAL_PROMPT != 0 && set prompt="$_OLD_VIRTUAL_PROMPT" && unset _OLD_VIRTUAL_PROMPT; unsetenv VIRTUAL_ENV; unsetenv VIRTUAL_ENV_PROMPT; test "\!:*" != "nondestructive" && unalias deactivate'
|
|
8
|
+
|
|
9
|
+
# Unset irrelevant variables.
|
|
10
|
+
deactivate nondestructive
|
|
11
|
+
|
|
12
|
+
setenv VIRTUAL_ENV /home/ehsan/Desktop/rustoken-main/.venv-py312
|
|
13
|
+
|
|
14
|
+
set _OLD_VIRTUAL_PATH="$PATH"
|
|
15
|
+
setenv PATH "$VIRTUAL_ENV/"bin":$PATH"
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
set _OLD_VIRTUAL_PROMPT="$prompt"
|
|
19
|
+
|
|
20
|
+
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
|
|
21
|
+
set prompt = '(.venv-py312) '"$prompt"
|
|
22
|
+
setenv VIRTUAL_ENV_PROMPT '(.venv-py312) '
|
|
23
|
+
endif
|
|
24
|
+
|
|
25
|
+
alias pydoc python -m pydoc
|
|
26
|
+
|
|
27
|
+
rehash
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
# This file must be used with "source <venv>/bin/activate.fish" *from fish*
|
|
2
|
+
# (https://fishshell.com/). You cannot run it directly.
|
|
3
|
+
|
|
4
|
+
function deactivate -d "Exit virtual environment and return to normal shell environment"
|
|
5
|
+
# reset old environment variables
|
|
6
|
+
if test -n "$_OLD_VIRTUAL_PATH"
|
|
7
|
+
set -gx PATH $_OLD_VIRTUAL_PATH
|
|
8
|
+
set -e _OLD_VIRTUAL_PATH
|
|
9
|
+
end
|
|
10
|
+
if test -n "$_OLD_VIRTUAL_PYTHONHOME"
|
|
11
|
+
set -gx PYTHONHOME $_OLD_VIRTUAL_PYTHONHOME
|
|
12
|
+
set -e _OLD_VIRTUAL_PYTHONHOME
|
|
13
|
+
end
|
|
14
|
+
|
|
15
|
+
if test -n "$_OLD_FISH_PROMPT_OVERRIDE"
|
|
16
|
+
set -e _OLD_FISH_PROMPT_OVERRIDE
|
|
17
|
+
# prevents error when using nested fish instances (Issue #93858)
|
|
18
|
+
if functions -q _old_fish_prompt
|
|
19
|
+
functions -e fish_prompt
|
|
20
|
+
functions -c _old_fish_prompt fish_prompt
|
|
21
|
+
functions -e _old_fish_prompt
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
|
|
25
|
+
set -e VIRTUAL_ENV
|
|
26
|
+
set -e VIRTUAL_ENV_PROMPT
|
|
27
|
+
if test "$argv[1]" != "nondestructive"
|
|
28
|
+
# Self-destruct!
|
|
29
|
+
functions -e deactivate
|
|
30
|
+
end
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
# Unset irrelevant variables.
|
|
34
|
+
deactivate nondestructive
|
|
35
|
+
|
|
36
|
+
set -gx VIRTUAL_ENV /home/ehsan/Desktop/rustoken-main/.venv-py312
|
|
37
|
+
|
|
38
|
+
set -gx _OLD_VIRTUAL_PATH $PATH
|
|
39
|
+
set -gx PATH "$VIRTUAL_ENV/"bin $PATH
|
|
40
|
+
|
|
41
|
+
# Unset PYTHONHOME if set.
|
|
42
|
+
if set -q PYTHONHOME
|
|
43
|
+
set -gx _OLD_VIRTUAL_PYTHONHOME $PYTHONHOME
|
|
44
|
+
set -e PYTHONHOME
|
|
45
|
+
end
|
|
46
|
+
|
|
47
|
+
if test -z "$VIRTUAL_ENV_DISABLE_PROMPT"
|
|
48
|
+
# fish uses a function instead of an env var to generate the prompt.
|
|
49
|
+
|
|
50
|
+
# Save the current fish_prompt function as the function _old_fish_prompt.
|
|
51
|
+
functions -c fish_prompt _old_fish_prompt
|
|
52
|
+
|
|
53
|
+
# With the original prompt function renamed, we can override with our own.
|
|
54
|
+
function fish_prompt
|
|
55
|
+
# Save the return status of the last command.
|
|
56
|
+
set -l old_status $status
|
|
57
|
+
|
|
58
|
+
# Output the venv prompt; color taken from the blue of the Python logo.
|
|
59
|
+
printf "%s%s%s" (set_color 4B8BBE) '(.venv-py312) ' (set_color normal)
|
|
60
|
+
|
|
61
|
+
# Restore the return status of the previous command.
|
|
62
|
+
echo "exit $old_status" | .
|
|
63
|
+
# Output the original/"old" prompt.
|
|
64
|
+
_old_fish_prompt
|
|
65
|
+
end
|
|
66
|
+
|
|
67
|
+
set -gx _OLD_FISH_PROMPT_OVERRIDE "$VIRTUAL_ENV"
|
|
68
|
+
set -gx VIRTUAL_ENV_PROMPT '(.venv-py312) '
|
|
69
|
+
end
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/home/ehsan/Desktop/rustoken-main/.venv-py312/bin/python3.12
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
import re
|
|
4
|
+
import sys
|
|
5
|
+
from pip._internal.cli.main import main
|
|
6
|
+
if __name__ == '__main__':
|
|
7
|
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
8
|
+
sys.exit(main())
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/home/ehsan/Desktop/rustoken-main/.venv-py312/bin/python3.12
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
import re
|
|
4
|
+
import sys
|
|
5
|
+
from pip._internal.cli.main import main
|
|
6
|
+
if __name__ == '__main__':
|
|
7
|
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
8
|
+
sys.exit(main())
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/home/ehsan/Desktop/rustoken-main/.venv-py312/bin/python3.12
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
import re
|
|
4
|
+
import sys
|
|
5
|
+
from pip._internal.cli.main import main
|
|
6
|
+
if __name__ == '__main__':
|
|
7
|
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
8
|
+
sys.exit(main())
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from typing import List, Optional
|
|
2
|
+
|
|
3
|
+
__version__ = "25.0.1"
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
def main(args: Optional[List[str]] = None) -> int:
|
|
7
|
+
"""This is an internal API only meant for use by pip's own console scripts.
|
|
8
|
+
|
|
9
|
+
For additional details, see https://github.com/pypa/pip/issues/7498.
|
|
10
|
+
"""
|
|
11
|
+
from pip._internal.utils.entrypoints import _wrapper
|
|
12
|
+
|
|
13
|
+
return _wrapper(args)
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import os
|
|
2
|
+
import sys
|
|
3
|
+
|
|
4
|
+
# Remove '' and current working directory from the first entry
|
|
5
|
+
# of sys.path, if present to avoid using current directory
|
|
6
|
+
# in pip commands check, freeze, install, list and show,
|
|
7
|
+
# when invoked as python -m pip <command>
|
|
8
|
+
if sys.path[0] in ("", os.getcwd()):
|
|
9
|
+
sys.path.pop(0)
|
|
10
|
+
|
|
11
|
+
# If we are running from a wheel, add the wheel to sys.path
|
|
12
|
+
# This allows the usage python pip-*.whl/pip install pip-*.whl
|
|
13
|
+
if __package__ == "":
|
|
14
|
+
# __file__ is pip-*.whl/pip/__main__.py
|
|
15
|
+
# first dirname call strips of '/__main__.py', second strips off '/pip'
|
|
16
|
+
# Resulting path is the name of the wheel itself
|
|
17
|
+
# Add that to sys.path so we can import pip
|
|
18
|
+
path = os.path.dirname(os.path.dirname(__file__))
|
|
19
|
+
sys.path.insert(0, path)
|
|
20
|
+
|
|
21
|
+
if __name__ == "__main__":
|
|
22
|
+
from pip._internal.cli.main import main as _main
|
|
23
|
+
|
|
24
|
+
sys.exit(_main())
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"""Execute exactly this copy of pip, within a different environment.
|
|
2
|
+
|
|
3
|
+
This file is named as it is, to ensure that this module can't be imported via
|
|
4
|
+
an import statement.
|
|
5
|
+
"""
|
|
6
|
+
|
|
7
|
+
# /!\ This version compatibility check section must be Python 2 compatible. /!\
|
|
8
|
+
|
|
9
|
+
import sys
|
|
10
|
+
|
|
11
|
+
# Copied from pyproject.toml
|
|
12
|
+
PYTHON_REQUIRES = (3, 8)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
def version_str(version): # type: ignore
|
|
16
|
+
return ".".join(str(v) for v in version)
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
if sys.version_info[:2] < PYTHON_REQUIRES:
|
|
20
|
+
raise SystemExit(
|
|
21
|
+
"This version of pip does not support python {} (requires >={}).".format(
|
|
22
|
+
version_str(sys.version_info[:2]), version_str(PYTHON_REQUIRES)
|
|
23
|
+
)
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
# From here on, we can use Python 3 features, but the syntax must remain
|
|
27
|
+
# Python 2 compatible.
|
|
28
|
+
|
|
29
|
+
import runpy # noqa: E402
|
|
30
|
+
from importlib.machinery import PathFinder # noqa: E402
|
|
31
|
+
from os.path import dirname # noqa: E402
|
|
32
|
+
|
|
33
|
+
PIP_SOURCES_ROOT = dirname(dirname(__file__))
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
class PipImportRedirectingFinder:
|
|
37
|
+
@classmethod
|
|
38
|
+
def find_spec(self, fullname, path=None, target=None): # type: ignore
|
|
39
|
+
if fullname != "pip":
|
|
40
|
+
return None
|
|
41
|
+
|
|
42
|
+
spec = PathFinder.find_spec(fullname, [PIP_SOURCES_ROOT], target)
|
|
43
|
+
assert spec, (PIP_SOURCES_ROOT, fullname)
|
|
44
|
+
return spec
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
sys.meta_path.insert(0, PipImportRedirectingFinder())
|
|
48
|
+
|
|
49
|
+
assert __name__ == "__main__", "Cannot run __pip-runner__.py as a non-main module"
|
|
50
|
+
runpy.run_module("pip", run_name="__main__", alter_sys=True)
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from typing import List, Optional
|
|
2
|
+
|
|
3
|
+
from pip._internal.utils import _log
|
|
4
|
+
|
|
5
|
+
# init_logging() must be called before any call to logging.getLogger()
|
|
6
|
+
# which happens at import of most modules.
|
|
7
|
+
_log.init_logging()
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def main(args: Optional[List[str]] = None) -> int:
|
|
11
|
+
"""This is preserved for old console scripts that may still be referencing
|
|
12
|
+
it.
|
|
13
|
+
|
|
14
|
+
For additional details, see https://github.com/pypa/pip/issues/7498.
|
|
15
|
+
"""
|
|
16
|
+
from pip._internal.utils.entrypoints import _wrapper
|
|
17
|
+
|
|
18
|
+
return _wrapper(args)
|