ailinuxweb 0.1.0__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.
- ailinuxweb-0.1.0/.buildvenv/bin/Activate.ps1 +247 -0
- ailinuxweb-0.1.0/.buildvenv/bin/activate +69 -0
- ailinuxweb-0.1.0/.buildvenv/bin/activate.csh +26 -0
- ailinuxweb-0.1.0/.buildvenv/bin/activate.fish +69 -0
- ailinuxweb-0.1.0/.buildvenv/bin/pip +8 -0
- ailinuxweb-0.1.0/.buildvenv/bin/pip3 +8 -0
- ailinuxweb-0.1.0/.buildvenv/bin/pip3.10 +8 -0
- ailinuxweb-0.1.0/.buildvenv/bin/pyproject-build +8 -0
- ailinuxweb-0.1.0/.buildvenv/bin/python +1 -0
- ailinuxweb-0.1.0/.buildvenv/bin/python3 +1 -0
- ailinuxweb-0.1.0/.buildvenv/bin/python3.10 +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/_distutils_hack/__init__.py +132 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/_distutils_hack/override.py +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/__init__.py +47 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/__main__.py +654 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_builder.py +393 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_compat/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_compat/importlib.py +22 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_compat/tarfile.py +31 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_compat/tomllib.py +19 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_ctx.py +105 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_exceptions.py +69 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_types.py +22 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_util.py +68 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/env.py +507 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/util.py +70 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/INSTALLER +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/METADATA +139 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/RECORD +35 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/REQUESTED +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/WHEEL +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/entry_points.txt +6 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/licenses/LICENSE +20 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/distutils-precedence.pth +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/__init__.py +15 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_elffile.py +108 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_manylinux.py +278 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_musllinux.py +88 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_parser.py +418 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_ranges.py +836 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_structures.py +33 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_tokenizer.py +200 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/dependency_groups.py +335 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/direct_url.py +349 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/errors.py +94 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/licenses/__init__.py +198 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/licenses/_spdx.py +799 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/markers.py +576 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/metadata.py +1054 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/pylock.py +943 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/ranges.py +2067 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/requirements.py +192 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/specifiers.py +1457 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/tags.py +1053 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/utils.py +370 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/version.py +1252 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/INSTALLER +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/METADATA +112 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/RECORD +52 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/WHEEL +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/licenses/LICENSE +3 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/licenses/LICENSE.APACHE +177 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/licenses/LICENSE.BSD +23 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/__init__.py +13 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/__main__.py +24 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/__pip-runner__.py +50 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/__init__.py +18 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/__init__.py +25 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/base.py +103 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/installer.py +333 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/noop.py +42 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/venv.py +145 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/virtual.py +139 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cache.py +294 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/__init__.py +3 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py +187 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py +261 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py +1409 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/command_context.py +28 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/index_command.py +217 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/main.py +86 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py +135 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/parser.py +366 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py +153 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py +504 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py +235 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py +7 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/__init__.py +139 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/cache.py +256 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/check.py +66 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/completion.py +136 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/configuration.py +289 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/debug.py +195 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/download.py +150 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py +107 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/hash.py +58 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/help.py +40 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/index.py +173 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/inspect.py +92 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/install.py +904 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/list.py +408 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/lock.py +173 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/search.py +178 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/show.py +237 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py +113 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py +177 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/configuration.py +395 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/base.py +57 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/installed.py +34 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py +193 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py +45 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/exceptions.py +1145 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/index/__init__.py +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/index/collector.py +510 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/index/package_finder.py +1152 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/index/sources.py +286 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/locations/__init__.py +438 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py +173 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/locations/base.py +82 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/main.py +12 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py +169 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/_json.py +87 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/base.py +690 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_envs.py +148 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/__init__.py +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/candidate.py +27 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/direct_url.py +42 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/format_control.py +78 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/index.py +28 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/installation_report.py +57 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/link.py +657 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/release_control.py +91 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/scheme.py +23 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/search_scope.py +124 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py +36 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/target_python.py +122 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/wheel.py +80 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/__init__.py +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/auth.py +587 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/cache.py +128 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/download.py +387 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/session.py +532 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/utils.py +206 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py +61 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py +38 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py +38 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/check.py +174 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/freeze.py +259 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py +764 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/prepare.py +896 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/pyproject.py +123 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/__init__.py +105 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/constructors.py +662 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/pep723.py +41 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_file.py +622 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_install.py +842 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_set.py +81 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py +644 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/base.py +20 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +598 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +901 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +309 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +341 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py +246 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/_log.py +38 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py +52 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/compat.py +91 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/datetime.py +28 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py +144 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py +81 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py +88 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py +201 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py +24 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py +102 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py +150 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/logging.py +404 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/misc.py +815 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/packaging.py +44 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/pylock.py +299 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/retry.py +46 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py +249 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py +293 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py +407 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/urls.py +58 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py +71 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py +132 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py +15 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py +130 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/git.py +574 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py +186 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py +335 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py +694 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py +265 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/README.rst +178 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/__init__.py +117 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/bom.cdx.json +231 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/LICENSE +20 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem +3863 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py +83 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py +1107 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py +372 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py +451 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py +2021 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/LICENSE +202 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/__init__.py +54 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/__main__.py +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/distro.py +1403 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py +45 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/__main__.py +6 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/cli.py +128 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py +159 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py +41 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/core.py +648 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py +1897 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py +55 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py +16896 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/COPYING +14 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/LICENSE +3 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_parser.py +393 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py +33 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/errors.py +94 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py +492 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/metadata.py +964 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/pylock.py +905 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py +129 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py +932 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py +296 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/version.py +1231 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py +917 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py +66 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/_xdg.py +171 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py +300 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py +463 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py +223 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py +321 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py +24 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py +395 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/LICENSE +25 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py +70 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py +70 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py +942 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py +965 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py +603 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py +1204 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py +74 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py +102 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py +203 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py +214 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py +324 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/LICENSE +175 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py +214 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py +14 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/_types.py +183 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py +748 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/api.py +180 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py +354 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py +18 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py +96 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py +625 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py +162 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/help.py +127 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py +48 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/models.py +1180 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/packages.py +25 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py +920 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/structures.py +130 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py +1155 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/LICENSE +19 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py +177 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py +245 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py +10 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py +43 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py +17 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py +153 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py +16 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py +19 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py +71 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py +33 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/align.py +306 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py +241 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py +93 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/box.py +474 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py +174 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/color.py +621 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py +187 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/console.py +2680 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py +37 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/containers.py +167 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/control.py +219 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py +193 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py +39 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py +91 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py +34 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py +88 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/json.py +139 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py +442 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/live.py +400 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py +106 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py +297 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py +251 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py +151 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py +141 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py +34 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py +100 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py +317 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py +1715 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py +400 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py +42 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/region.py +10 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py +149 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py +130 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py +86 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/screen.py +54 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py +752 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py +132 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/status.py +131 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/style.py +792 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/styled.py +42 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py +985 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/table.py +1006 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/text.py +1361 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py +115 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/themes.py +5 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py +899 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py +257 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py +793 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py +119 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/_types.py +10 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/py.typed +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_api.py +341 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/_base_connection.py +167 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py +486 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py +24 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py +1191 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +281 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +563 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py +341 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py +653 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/py.typed +2 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py +1487 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py +557 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py +477 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +153 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/vendor.txt +18 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/py.typed +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/INSTALLER +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/METADATA +110 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/RECORD +885 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/REQUESTED +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/WHEEL +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/entry_points.txt +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/AUTHORS.txt +888 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/LICENSE.txt +20 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/__init__.py +3303 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +608 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +26 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +25 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +301 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +136 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py +67 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py +304 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py +146 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py +828 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py +484 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py +136 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py +504 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py +5742 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/extern/__init__.py +73 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +6 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/__init__.py +31 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/_impl.py +410 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/_in_process/__init__.py +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/_in_process/_in_process.py +389 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/py.typed +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/INSTALLER +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/METADATA +25 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/RECORD +14 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/WHEEL +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/__init__.py +242 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_deprecation_warning.py +7 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/__init__.py +24 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py +561 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py +256 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py +393 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py +1123 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py +403 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py +31 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py +143 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py +123 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py +749 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py +579 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py +377 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build.py +157 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py +209 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py +755 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py +392 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py +152 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/check.py +148 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py +76 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/config.py +344 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install.py +721 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py +79 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py +84 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py +47 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py +217 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py +60 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py +30 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/register.py +304 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py +494 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py +214 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/config.py +130 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/core.py +249 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py +425 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/debug.py +5 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py +92 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py +210 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/dist.py +1257 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/errors.py +97 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/extension.py +240 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py +457 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/file_util.py +238 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/filelist.py +355 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/log.py +77 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py +788 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py +643 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py +19 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py +7 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py +106 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py +601 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/text_file.py +286 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py +325 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/util.py +548 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/version.py +363 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py +169 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_imp.py +82 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/__init__.py +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py +3825 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py +620 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py +488 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py +26 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py +25 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py +301 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py +136 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py +67 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py +304 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py +146 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py +828 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py +484 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py +136 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py +504 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py +5742 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/archive_util.py +205 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/build_meta.py +290 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/cli-32.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/cli-64.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/cli-arm64.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/cli.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/__init__.py +8 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/alias.py +78 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py +456 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py +40 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/build_clib.py +101 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/build_ext.py +328 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/build_py.py +242 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/develop.py +193 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/dist_info.py +36 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/easy_install.py +2354 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/egg_info.py +755 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/install.py +132 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/install_egg_info.py +82 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/install_lib.py +148 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/install_scripts.py +69 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/launcher manifest.xml +15 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/py36compat.py +134 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/register.py +18 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/rotate.py +64 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/saveopts.py +22 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/sdist.py +196 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/setopt.py +149 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/test.py +252 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/upload.py +17 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/upload_docs.py +202 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/config.py +751 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/dep_util.py +25 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/depends.py +176 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/dist.py +1156 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/errors.py +40 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/extension.py +55 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/extern/__init__.py +73 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/glob.py +167 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/gui-32.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/gui-64.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/gui-arm64.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/gui.exe +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/installer.py +104 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/launch.py +36 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/monkey.py +177 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/msvc.py +1805 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/namespaces.py +107 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/package_index.py +1176 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/py34compat.py +13 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/sandbox.py +530 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/script (dev).tmpl +6 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/script.tmpl +3 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/unicode_utils.py +42 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/version.py +6 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/wheel.py +213 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/windows_support.py +29 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/INSTALLER +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/LICENSE +19 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/METADATA +125 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/RECORD +298 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/REQUESTED +0 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/WHEEL +5 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/entry_points.txt +56 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/top_level.txt +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/__init__.py +8 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/_parser.py +793 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/_re.py +119 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/_types.py +10 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/py.typed +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/INSTALLER +1 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/METADATA +265 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/RECORD +14 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/WHEEL +4 -0
- ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/licenses/LICENSE +21 -0
- ailinuxweb-0.1.0/.buildvenv/pyvenv.cfg +3 -0
- ailinuxweb-0.1.0/LICENSE +21 -0
- ailinuxweb-0.1.0/PKG-INFO +127 -0
- ailinuxweb-0.1.0/README.md +100 -0
- ailinuxweb-0.1.0/pyproject.toml +41 -0
- ailinuxweb-0.1.0/src/ailinuxweb/__init__.py +0 -0
- ailinuxweb-0.1.0/src/ailinuxweb/app.py +6982 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/css/style.css +2804 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/account.js +431 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/auth-guard.js +37 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/channels.js +330 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/decoy.js +262 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/file-tree.js +686 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/litellm.js +386 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/live-sessions.js +191 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/lock-screen.js +570 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/notify.js +311 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/path-autocomplete.js +109 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/prefs.js +92 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/session-browser.js +516 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/settings.js +174 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/ssh-terminal.js +195 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/system.js +236 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/terminal.js +1272 -0
- ailinuxweb-0.1.0/src/ailinuxweb/static/js/three-col.js +184 -0
- ailinuxweb-0.1.0/src/ailinuxweb/templates/index.html +1032 -0
- ailinuxweb-0.1.0/src/ailinuxweb/templates/login.html +34 -0
|
@@ -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,69 @@
|
|
|
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
|
+
# This should detect bash and zsh, which have a hash command that must
|
|
18
|
+
# be called to get it to forget past commands. Without forgetting
|
|
19
|
+
# past commands the $PATH changes we made may not be respected
|
|
20
|
+
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
|
|
21
|
+
hash -r 2> /dev/null
|
|
22
|
+
fi
|
|
23
|
+
|
|
24
|
+
if [ -n "${_OLD_VIRTUAL_PS1:-}" ] ; then
|
|
25
|
+
PS1="${_OLD_VIRTUAL_PS1:-}"
|
|
26
|
+
export PS1
|
|
27
|
+
unset _OLD_VIRTUAL_PS1
|
|
28
|
+
fi
|
|
29
|
+
|
|
30
|
+
unset VIRTUAL_ENV
|
|
31
|
+
unset VIRTUAL_ENV_PROMPT
|
|
32
|
+
if [ ! "${1:-}" = "nondestructive" ] ; then
|
|
33
|
+
# Self destruct!
|
|
34
|
+
unset -f deactivate
|
|
35
|
+
fi
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
# unset irrelevant variables
|
|
39
|
+
deactivate nondestructive
|
|
40
|
+
|
|
41
|
+
VIRTUAL_ENV=/root/home/test33/ailinuxweb-pkg/.buildvenv
|
|
42
|
+
export VIRTUAL_ENV
|
|
43
|
+
|
|
44
|
+
_OLD_VIRTUAL_PATH="$PATH"
|
|
45
|
+
PATH="$VIRTUAL_ENV/"bin":$PATH"
|
|
46
|
+
export PATH
|
|
47
|
+
|
|
48
|
+
# unset PYTHONHOME if set
|
|
49
|
+
# this will fail if PYTHONHOME is set to the empty string (which is bad anyway)
|
|
50
|
+
# could use `if (set -u; : $PYTHONHOME) ;` in bash
|
|
51
|
+
if [ -n "${PYTHONHOME:-}" ] ; then
|
|
52
|
+
_OLD_VIRTUAL_PYTHONHOME="${PYTHONHOME:-}"
|
|
53
|
+
unset PYTHONHOME
|
|
54
|
+
fi
|
|
55
|
+
|
|
56
|
+
if [ -z "${VIRTUAL_ENV_DISABLE_PROMPT:-}" ] ; then
|
|
57
|
+
_OLD_VIRTUAL_PS1="${PS1:-}"
|
|
58
|
+
PS1='(.buildvenv) '"${PS1:-}"
|
|
59
|
+
export PS1
|
|
60
|
+
VIRTUAL_ENV_PROMPT='(.buildvenv) '
|
|
61
|
+
export VIRTUAL_ENV_PROMPT
|
|
62
|
+
fi
|
|
63
|
+
|
|
64
|
+
# This should detect bash and zsh, which have a hash command that must
|
|
65
|
+
# be called to get it to forget past commands. Without forgetting
|
|
66
|
+
# past commands the $PATH changes we made may not be respected
|
|
67
|
+
if [ -n "${BASH:-}" -o -n "${ZSH_VERSION:-}" ] ; then
|
|
68
|
+
hash -r 2> /dev/null
|
|
69
|
+
fi
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
# This file must be used with "source bin/activate.csh" *from csh*.
|
|
2
|
+
# You cannot run it directly.
|
|
3
|
+
# Created by Davide Di Blasi <davidedb@gmail.com>.
|
|
4
|
+
# Ported to Python 3.3 venv by Andrew Svetlov <andrew.svetlov@gmail.com>
|
|
5
|
+
|
|
6
|
+
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'
|
|
7
|
+
|
|
8
|
+
# Unset irrelevant variables.
|
|
9
|
+
deactivate nondestructive
|
|
10
|
+
|
|
11
|
+
setenv VIRTUAL_ENV /root/home/test33/ailinuxweb-pkg/.buildvenv
|
|
12
|
+
|
|
13
|
+
set _OLD_VIRTUAL_PATH="$PATH"
|
|
14
|
+
setenv PATH "$VIRTUAL_ENV/"bin":$PATH"
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
set _OLD_VIRTUAL_PROMPT="$prompt"
|
|
18
|
+
|
|
19
|
+
if (! "$?VIRTUAL_ENV_DISABLE_PROMPT") then
|
|
20
|
+
set prompt = '(.buildvenv) '"$prompt"
|
|
21
|
+
setenv VIRTUAL_ENV_PROMPT '(.buildvenv) '
|
|
22
|
+
endif
|
|
23
|
+
|
|
24
|
+
alias pydoc python -m pydoc
|
|
25
|
+
|
|
26
|
+
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 /root/home/test33/ailinuxweb-pkg/.buildvenv
|
|
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) '(.buildvenv) ' (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 '(.buildvenv) '
|
|
69
|
+
end
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
#!/root/home/test33/ailinuxweb-pkg/.buildvenv/bin/python3
|
|
2
|
+
# -*- coding: utf-8 -*-
|
|
3
|
+
import re
|
|
4
|
+
import sys
|
|
5
|
+
from build.__main__ import entrypoint
|
|
6
|
+
if __name__ == '__main__':
|
|
7
|
+
sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
|
|
8
|
+
sys.exit(entrypoint())
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
python3
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
/usr/bin/python3
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
python3
|
|
@@ -0,0 +1,132 @@
|
|
|
1
|
+
import sys
|
|
2
|
+
import os
|
|
3
|
+
import re
|
|
4
|
+
import importlib
|
|
5
|
+
import warnings
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
is_pypy = '__pypy__' in sys.builtin_module_names
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
warnings.filterwarnings('ignore',
|
|
12
|
+
r'.+ distutils\b.+ deprecated',
|
|
13
|
+
DeprecationWarning)
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
def warn_distutils_present():
|
|
17
|
+
if 'distutils' not in sys.modules:
|
|
18
|
+
return
|
|
19
|
+
if is_pypy and sys.version_info < (3, 7):
|
|
20
|
+
# PyPy for 3.6 unconditionally imports distutils, so bypass the warning
|
|
21
|
+
# https://foss.heptapod.net/pypy/pypy/-/blob/be829135bc0d758997b3566062999ee8b23872b4/lib-python/3/site.py#L250
|
|
22
|
+
return
|
|
23
|
+
warnings.warn(
|
|
24
|
+
"Distutils was imported before Setuptools, but importing Setuptools "
|
|
25
|
+
"also replaces the `distutils` module in `sys.modules`. This may lead "
|
|
26
|
+
"to undesirable behaviors or errors. To avoid these issues, avoid "
|
|
27
|
+
"using distutils directly, ensure that setuptools is installed in the "
|
|
28
|
+
"traditional way (e.g. not an editable install), and/or make sure "
|
|
29
|
+
"that setuptools is always imported before distutils.")
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def clear_distutils():
|
|
33
|
+
if 'distutils' not in sys.modules:
|
|
34
|
+
return
|
|
35
|
+
warnings.warn("Setuptools is replacing distutils.")
|
|
36
|
+
mods = [name for name in sys.modules if re.match(r'distutils\b', name)]
|
|
37
|
+
for name in mods:
|
|
38
|
+
del sys.modules[name]
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
def enabled():
|
|
42
|
+
"""
|
|
43
|
+
Allow selection of distutils by environment variable.
|
|
44
|
+
"""
|
|
45
|
+
which = os.environ.get('SETUPTOOLS_USE_DISTUTILS', 'stdlib')
|
|
46
|
+
return which == 'local'
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
def ensure_local_distutils():
|
|
50
|
+
clear_distutils()
|
|
51
|
+
|
|
52
|
+
# With the DistutilsMetaFinder in place,
|
|
53
|
+
# perform an import to cause distutils to be
|
|
54
|
+
# loaded from setuptools._distutils. Ref #2906.
|
|
55
|
+
add_shim()
|
|
56
|
+
importlib.import_module('distutils')
|
|
57
|
+
remove_shim()
|
|
58
|
+
|
|
59
|
+
# check that submodules load as expected
|
|
60
|
+
core = importlib.import_module('distutils.core')
|
|
61
|
+
assert '_distutils' in core.__file__, core.__file__
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
def do_override():
|
|
65
|
+
"""
|
|
66
|
+
Ensure that the local copy of distutils is preferred over stdlib.
|
|
67
|
+
|
|
68
|
+
See https://github.com/pypa/setuptools/issues/417#issuecomment-392298401
|
|
69
|
+
for more motivation.
|
|
70
|
+
"""
|
|
71
|
+
if enabled():
|
|
72
|
+
warn_distutils_present()
|
|
73
|
+
ensure_local_distutils()
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
class DistutilsMetaFinder:
|
|
77
|
+
def find_spec(self, fullname, path, target=None):
|
|
78
|
+
if path is not None:
|
|
79
|
+
return
|
|
80
|
+
|
|
81
|
+
method_name = 'spec_for_{fullname}'.format(**locals())
|
|
82
|
+
method = getattr(self, method_name, lambda: None)
|
|
83
|
+
return method()
|
|
84
|
+
|
|
85
|
+
def spec_for_distutils(self):
|
|
86
|
+
import importlib.abc
|
|
87
|
+
import importlib.util
|
|
88
|
+
|
|
89
|
+
class DistutilsLoader(importlib.abc.Loader):
|
|
90
|
+
|
|
91
|
+
def create_module(self, spec):
|
|
92
|
+
return importlib.import_module('setuptools._distutils')
|
|
93
|
+
|
|
94
|
+
def exec_module(self, module):
|
|
95
|
+
pass
|
|
96
|
+
|
|
97
|
+
return importlib.util.spec_from_loader('distutils', DistutilsLoader())
|
|
98
|
+
|
|
99
|
+
def spec_for_pip(self):
|
|
100
|
+
"""
|
|
101
|
+
Ensure stdlib distutils when running under pip.
|
|
102
|
+
See pypa/pip#8761 for rationale.
|
|
103
|
+
"""
|
|
104
|
+
if self.pip_imported_during_build():
|
|
105
|
+
return
|
|
106
|
+
clear_distutils()
|
|
107
|
+
self.spec_for_distutils = lambda: None
|
|
108
|
+
|
|
109
|
+
@staticmethod
|
|
110
|
+
def pip_imported_during_build():
|
|
111
|
+
"""
|
|
112
|
+
Detect if pip is being imported in a build script. Ref #2355.
|
|
113
|
+
"""
|
|
114
|
+
import traceback
|
|
115
|
+
return any(
|
|
116
|
+
frame.f_globals['__file__'].endswith('setup.py')
|
|
117
|
+
for frame, line in traceback.walk_stack(None)
|
|
118
|
+
)
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
DISTUTILS_FINDER = DistutilsMetaFinder()
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
def add_shim():
|
|
125
|
+
sys.meta_path.insert(0, DISTUTILS_FINDER)
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
def remove_shim():
|
|
129
|
+
try:
|
|
130
|
+
sys.meta_path.remove(DISTUTILS_FINDER)
|
|
131
|
+
except ValueError:
|
|
132
|
+
pass
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__import__('_distutils_hack').do_override()
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"""
|
|
2
|
+
build - A simple, correct Python build frontend
|
|
3
|
+
"""
|
|
4
|
+
|
|
5
|
+
from __future__ import annotations
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
__lazy_modules__ = [
|
|
9
|
+
f'{__spec__.parent}._builder',
|
|
10
|
+
f'{__spec__.parent}._exceptions',
|
|
11
|
+
f'{__spec__.parent}._types',
|
|
12
|
+
f'{__spec__.parent}._util',
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
from ._builder import ProjectBuilder
|
|
16
|
+
from ._exceptions import (
|
|
17
|
+
BuildBackendException,
|
|
18
|
+
BuildException,
|
|
19
|
+
BuildSystemTableValidationError,
|
|
20
|
+
FailedProcessError,
|
|
21
|
+
TypoWarning,
|
|
22
|
+
)
|
|
23
|
+
from ._types import ConfigSettings as ConfigSettingsType
|
|
24
|
+
from ._types import Distribution as DistributionType
|
|
25
|
+
from ._types import SubprocessRunner as RunnerType
|
|
26
|
+
from ._util import check_dependency
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
__version__ = '1.5.0'
|
|
30
|
+
|
|
31
|
+
__all__ = [
|
|
32
|
+
'BuildBackendException',
|
|
33
|
+
'BuildException',
|
|
34
|
+
'BuildSystemTableValidationError',
|
|
35
|
+
'ConfigSettingsType',
|
|
36
|
+
'DistributionType',
|
|
37
|
+
'FailedProcessError',
|
|
38
|
+
'ProjectBuilder',
|
|
39
|
+
'RunnerType',
|
|
40
|
+
'TypoWarning',
|
|
41
|
+
'__version__',
|
|
42
|
+
'check_dependency',
|
|
43
|
+
]
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
def __dir__() -> list[str]:
|
|
47
|
+
return __all__
|