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.
Files changed (746) hide show
  1. ailinuxweb-0.1.0/.buildvenv/bin/Activate.ps1 +247 -0
  2. ailinuxweb-0.1.0/.buildvenv/bin/activate +69 -0
  3. ailinuxweb-0.1.0/.buildvenv/bin/activate.csh +26 -0
  4. ailinuxweb-0.1.0/.buildvenv/bin/activate.fish +69 -0
  5. ailinuxweb-0.1.0/.buildvenv/bin/pip +8 -0
  6. ailinuxweb-0.1.0/.buildvenv/bin/pip3 +8 -0
  7. ailinuxweb-0.1.0/.buildvenv/bin/pip3.10 +8 -0
  8. ailinuxweb-0.1.0/.buildvenv/bin/pyproject-build +8 -0
  9. ailinuxweb-0.1.0/.buildvenv/bin/python +1 -0
  10. ailinuxweb-0.1.0/.buildvenv/bin/python3 +1 -0
  11. ailinuxweb-0.1.0/.buildvenv/bin/python3.10 +1 -0
  12. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/_distutils_hack/__init__.py +132 -0
  13. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/_distutils_hack/override.py +1 -0
  14. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/__init__.py +47 -0
  15. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/__main__.py +654 -0
  16. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_builder.py +393 -0
  17. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_compat/__init__.py +0 -0
  18. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_compat/importlib.py +22 -0
  19. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_compat/tarfile.py +31 -0
  20. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_compat/tomllib.py +19 -0
  21. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_ctx.py +105 -0
  22. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_exceptions.py +69 -0
  23. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_types.py +22 -0
  24. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/_util.py +68 -0
  25. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/env.py +507 -0
  26. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/py.typed +0 -0
  27. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build/util.py +70 -0
  28. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/INSTALLER +1 -0
  29. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/METADATA +139 -0
  30. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/RECORD +35 -0
  31. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/REQUESTED +0 -0
  32. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/WHEEL +4 -0
  33. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/entry_points.txt +6 -0
  34. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/build-1.5.0.dist-info/licenses/LICENSE +20 -0
  35. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/distutils-precedence.pth +1 -0
  36. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/__init__.py +15 -0
  37. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_elffile.py +108 -0
  38. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_manylinux.py +278 -0
  39. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_musllinux.py +88 -0
  40. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_parser.py +418 -0
  41. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_ranges.py +836 -0
  42. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_structures.py +33 -0
  43. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/_tokenizer.py +200 -0
  44. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/dependency_groups.py +335 -0
  45. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/direct_url.py +349 -0
  46. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/errors.py +94 -0
  47. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/licenses/__init__.py +198 -0
  48. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/licenses/_spdx.py +799 -0
  49. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/markers.py +576 -0
  50. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/metadata.py +1054 -0
  51. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/py.typed +0 -0
  52. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/pylock.py +943 -0
  53. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/ranges.py +2067 -0
  54. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/requirements.py +192 -0
  55. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/specifiers.py +1457 -0
  56. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/tags.py +1053 -0
  57. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/utils.py +370 -0
  58. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging/version.py +1252 -0
  59. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/INSTALLER +1 -0
  60. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/METADATA +112 -0
  61. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/RECORD +52 -0
  62. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/WHEEL +4 -0
  63. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/licenses/LICENSE +3 -0
  64. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/licenses/LICENSE.APACHE +177 -0
  65. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/packaging-26.3.dist-info/licenses/LICENSE.BSD +23 -0
  66. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/__init__.py +13 -0
  67. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/__main__.py +24 -0
  68. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/__pip-runner__.py +50 -0
  69. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/__init__.py +18 -0
  70. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/__init__.py +25 -0
  71. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/base.py +103 -0
  72. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/installer.py +333 -0
  73. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/noop.py +42 -0
  74. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/venv.py +145 -0
  75. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/build_env/virtual.py +139 -0
  76. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cache.py +294 -0
  77. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/__init__.py +3 -0
  78. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/autocompletion.py +187 -0
  79. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/base_command.py +261 -0
  80. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/cmdoptions.py +1409 -0
  81. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/command_context.py +28 -0
  82. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/index_command.py +217 -0
  83. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/main.py +86 -0
  84. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/main_parser.py +135 -0
  85. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/parser.py +366 -0
  86. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  87. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/req_command.py +504 -0
  88. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/spinners.py +235 -0
  89. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/cli/status_codes.py +7 -0
  90. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/__init__.py +139 -0
  91. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/cache.py +256 -0
  92. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/check.py +66 -0
  93. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/completion.py +136 -0
  94. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/configuration.py +289 -0
  95. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/debug.py +195 -0
  96. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/download.py +150 -0
  97. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/freeze.py +107 -0
  98. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/hash.py +58 -0
  99. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/help.py +40 -0
  100. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/index.py +173 -0
  101. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/inspect.py +92 -0
  102. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/install.py +904 -0
  103. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/list.py +408 -0
  104. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/lock.py +173 -0
  105. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/search.py +178 -0
  106. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/show.py +237 -0
  107. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/uninstall.py +113 -0
  108. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/commands/wheel.py +177 -0
  109. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/configuration.py +395 -0
  110. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/__init__.py +21 -0
  111. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/base.py +57 -0
  112. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/installed.py +34 -0
  113. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/sdist.py +193 -0
  114. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/distributions/wheel.py +45 -0
  115. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/exceptions.py +1145 -0
  116. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/index/__init__.py +1 -0
  117. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/index/collector.py +510 -0
  118. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/index/package_finder.py +1152 -0
  119. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/index/sources.py +286 -0
  120. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/locations/__init__.py +438 -0
  121. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/locations/_distutils.py +173 -0
  122. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  123. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/locations/base.py +82 -0
  124. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/main.py +12 -0
  125. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/__init__.py +169 -0
  126. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/_json.py +87 -0
  127. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/base.py +690 -0
  128. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  129. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  130. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_dists.py +235 -0
  131. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/importlib/_envs.py +148 -0
  132. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  133. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/__init__.py +1 -0
  134. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/candidate.py +27 -0
  135. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/direct_url.py +42 -0
  136. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/format_control.py +78 -0
  137. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/index.py +28 -0
  138. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/installation_report.py +57 -0
  139. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/link.py +657 -0
  140. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/release_control.py +91 -0
  141. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/scheme.py +23 -0
  142. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/search_scope.py +124 -0
  143. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/selection_prefs.py +36 -0
  144. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/target_python.py +122 -0
  145. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/models/wheel.py +80 -0
  146. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/__init__.py +1 -0
  147. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/auth.py +587 -0
  148. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/cache.py +128 -0
  149. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/download.py +387 -0
  150. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  151. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/session.py +532 -0
  152. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/utils.py +206 -0
  153. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  154. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/__init__.py +0 -0
  155. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  156. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  157. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  158. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  159. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  160. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  161. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/check.py +174 -0
  162. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/freeze.py +259 -0
  163. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  164. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/install/wheel.py +764 -0
  165. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/operations/prepare.py +896 -0
  166. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/pyproject.py +123 -0
  167. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/__init__.py +105 -0
  168. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/constructors.py +662 -0
  169. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/pep723.py +41 -0
  170. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_dependency_group.py +86 -0
  171. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_file.py +622 -0
  172. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_install.py +842 -0
  173. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_set.py +81 -0
  174. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/req/req_uninstall.py +644 -0
  175. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/__init__.py +0 -0
  176. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/base.py +20 -0
  177. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  178. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  179. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  180. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/base.py +164 -0
  181. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/candidates.py +598 -0
  182. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/factory.py +901 -0
  183. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  184. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/provider.py +309 -0
  185. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  186. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  187. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/resolution/resolvelib/resolver.py +341 -0
  188. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/self_outdated_check.py +246 -0
  189. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/__init__.py +0 -0
  190. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  191. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/_log.py +38 -0
  192. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/appdirs.py +52 -0
  193. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/compat.py +91 -0
  194. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  195. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/datetime.py +28 -0
  196. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/deprecation.py +144 -0
  197. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/direct_url_helpers.py +92 -0
  198. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/egg_link.py +81 -0
  199. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  200. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/filesystem.py +201 -0
  201. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/filetypes.py +24 -0
  202. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/glibc.py +102 -0
  203. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/hashes.py +150 -0
  204. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/logging.py +404 -0
  205. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/misc.py +815 -0
  206. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/packaging.py +44 -0
  207. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/pylock.py +299 -0
  208. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/retry.py +46 -0
  209. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/subprocess.py +249 -0
  210. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/temp_dir.py +293 -0
  211. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/unpacking.py +407 -0
  212. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/urls.py +58 -0
  213. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/virtualenv.py +71 -0
  214. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/utils/wheel.py +132 -0
  215. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/__init__.py +15 -0
  216. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  217. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/git.py +574 -0
  218. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  219. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/subversion.py +335 -0
  220. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/vcs/versioncontrol.py +694 -0
  221. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_internal/wheel_builder.py +265 -0
  222. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/README.rst +178 -0
  223. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/__init__.py +117 -0
  224. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/bom.cdx.json +231 -0
  225. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  226. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  227. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  228. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  229. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  230. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  231. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  232. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  233. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  234. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  235. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  236. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  237. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  238. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  239. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  240. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  241. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  242. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/cacert.pem +3863 -0
  243. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/core.py +83 -0
  244. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/certifi/py.typed +0 -0
  245. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  246. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  247. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/compat.py +1107 -0
  248. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/resources.py +372 -0
  249. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/scripts.py +451 -0
  250. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  251. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  252. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  253. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/util.py +2021 -0
  254. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  255. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  256. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  257. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/LICENSE +202 -0
  258. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/__init__.py +54 -0
  259. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/__main__.py +4 -0
  260. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/distro.py +1403 -0
  261. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/distro/py.typed +0 -0
  262. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  263. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/__init__.py +45 -0
  264. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/__main__.py +6 -0
  265. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/cli.py +128 -0
  266. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/codec.py +159 -0
  267. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/compat.py +41 -0
  268. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/core.py +648 -0
  269. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/idnadata.py +1897 -0
  270. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/intranges.py +55 -0
  271. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/package_data.py +1 -0
  272. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/py.typed +0 -0
  273. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/idna/uts46data.py +16896 -0
  274. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  275. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  276. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  277. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  278. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  279. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  280. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  281. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  282. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  283. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  284. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  285. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  286. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_parser.py +393 -0
  287. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_structures.py +33 -0
  288. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  289. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/dependency_groups.py +302 -0
  290. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/direct_url.py +325 -0
  291. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/errors.py +94 -0
  292. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/licenses/__init__.py +186 -0
  293. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  294. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/markers.py +492 -0
  295. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/metadata.py +964 -0
  296. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/py.typed +0 -0
  297. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/pylock.py +905 -0
  298. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/requirements.py +129 -0
  299. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/specifiers.py +1943 -0
  300. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/tags.py +932 -0
  301. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/utils.py +296 -0
  302. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/packaging/version.py +1231 -0
  303. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  304. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  305. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  306. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__init__.py +917 -0
  307. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/__main__.py +66 -0
  308. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/_xdg.py +171 -0
  309. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/android.py +300 -0
  310. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/api.py +463 -0
  311. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/macos.py +223 -0
  312. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  313. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/unix.py +321 -0
  314. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/version.py +24 -0
  315. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/platformdirs/windows.py +395 -0
  316. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  317. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  318. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  319. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/console.py +70 -0
  320. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/filter.py +70 -0
  321. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/filters/__init__.py +942 -0
  322. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  323. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  324. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  325. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/lexer.py +965 -0
  326. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  327. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/_mapping.py +603 -0
  328. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/lexers/python.py +1204 -0
  329. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  330. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/plugin.py +74 -0
  331. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/regexopt.py +102 -0
  332. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  333. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  334. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/style.py +203 -0
  335. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  336. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  337. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/token.py +214 -0
  338. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  339. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pygments/util.py +324 -0
  340. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  341. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  342. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  343. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  344. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  345. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  346. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/LICENSE +175 -0
  347. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/__init__.py +214 -0
  348. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/__version__.py +14 -0
  349. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/_internal_utils.py +51 -0
  350. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/_types.py +183 -0
  351. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/adapters.py +748 -0
  352. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/api.py +180 -0
  353. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/auth.py +354 -0
  354. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/certs.py +18 -0
  355. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/compat.py +96 -0
  356. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/cookies.py +625 -0
  357. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/exceptions.py +162 -0
  358. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/help.py +127 -0
  359. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/hooks.py +48 -0
  360. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/models.py +1180 -0
  361. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/packages.py +25 -0
  362. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/py.typed +0 -0
  363. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/sessions.py +920 -0
  364. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  365. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/structures.py +130 -0
  366. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/requests/utils.py +1155 -0
  367. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  368. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  369. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  370. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  371. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  372. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  373. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  374. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  375. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  376. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  377. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  378. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/LICENSE +19 -0
  379. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/__init__.py +177 -0
  380. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/__main__.py +245 -0
  381. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  382. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  383. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  384. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  385. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_extension.py +10 -0
  386. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  387. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  388. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  389. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_loop.py +43 -0
  390. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  391. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  392. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_pick.py +17 -0
  393. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  394. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  395. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_stack.py +16 -0
  396. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_timer.py +19 -0
  397. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  398. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_windows.py +71 -0
  399. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  400. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  401. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/abc.py +33 -0
  402. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/align.py +306 -0
  403. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/ansi.py +241 -0
  404. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/bar.py +93 -0
  405. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/box.py +474 -0
  406. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/cells.py +174 -0
  407. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/color.py +621 -0
  408. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  409. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/columns.py +187 -0
  410. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/console.py +2680 -0
  411. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/constrain.py +37 -0
  412. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/containers.py +167 -0
  413. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/control.py +219 -0
  414. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  415. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  416. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/emoji.py +91 -0
  417. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/errors.py +34 -0
  418. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  419. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/filesize.py +88 -0
  420. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  421. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/json.py +139 -0
  422. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  423. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/layout.py +442 -0
  424. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/live.py +400 -0
  425. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/live_render.py +106 -0
  426. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/logging.py +297 -0
  427. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/markup.py +251 -0
  428. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/measure.py +151 -0
  429. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/padding.py +141 -0
  430. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/pager.py +34 -0
  431. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/palette.py +100 -0
  432. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/panel.py +317 -0
  433. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  434. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/progress.py +1715 -0
  435. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  436. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/prompt.py +400 -0
  437. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/protocol.py +42 -0
  438. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/py.typed +0 -0
  439. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/region.py +10 -0
  440. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/repr.py +149 -0
  441. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/rule.py +130 -0
  442. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/scope.py +86 -0
  443. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/screen.py +54 -0
  444. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/segment.py +752 -0
  445. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/spinner.py +132 -0
  446. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/status.py +131 -0
  447. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/style.py +792 -0
  448. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/styled.py +42 -0
  449. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/syntax.py +985 -0
  450. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/table.py +1006 -0
  451. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  452. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/text.py +1361 -0
  453. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/theme.py +115 -0
  454. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/themes.py +5 -0
  455. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/traceback.py +899 -0
  456. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/rich/tree.py +257 -0
  457. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  458. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  459. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/_parser.py +793 -0
  460. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/_re.py +119 -0
  461. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/_types.py +10 -0
  462. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli/py.typed +1 -0
  463. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  464. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  465. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  466. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  467. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  468. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  469. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_api.py +341 -0
  470. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  471. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  472. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  473. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  474. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/truststore/py.typed +0 -0
  475. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  476. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/__init__.py +211 -0
  477. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/_base_connection.py +167 -0
  478. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/_collections.py +486 -0
  479. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/_request_methods.py +278 -0
  480. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/_version.py +24 -0
  481. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/connection.py +1099 -0
  482. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/connectionpool.py +1191 -0
  483. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  484. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/__init__.py +17 -0
  485. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/connection.py +260 -0
  486. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
  487. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/fetch.py +726 -0
  488. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/request.py +22 -0
  489. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/emscripten/response.py +281 -0
  490. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +563 -0
  491. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/contrib/socks.py +228 -0
  492. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/exceptions.py +335 -0
  493. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/fields.py +341 -0
  494. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/filepost.py +89 -0
  495. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/http2/__init__.py +53 -0
  496. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/http2/connection.py +356 -0
  497. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/http2/probe.py +87 -0
  498. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/poolmanager.py +653 -0
  499. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/py.typed +2 -0
  500. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/response.py +1487 -0
  501. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/__init__.py +42 -0
  502. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/connection.py +137 -0
  503. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/proxy.py +43 -0
  504. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/request.py +254 -0
  505. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/response.py +101 -0
  506. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/retry.py +557 -0
  507. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_.py +477 -0
  508. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +153 -0
  509. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/ssltransport.py +271 -0
  510. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/timeout.py +275 -0
  511. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/url.py +469 -0
  512. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/util.py +42 -0
  513. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/urllib3/util/wait.py +124 -0
  514. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/_vendor/vendor.txt +18 -0
  515. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip/py.typed +4 -0
  516. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/INSTALLER +1 -0
  517. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/METADATA +110 -0
  518. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/RECORD +885 -0
  519. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/REQUESTED +0 -0
  520. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/WHEEL +4 -0
  521. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/entry_points.txt +4 -0
  522. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/AUTHORS.txt +888 -0
  523. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/LICENSE.txt +20 -0
  524. 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
  525. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  526. 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
  527. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  528. 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
  529. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  530. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  531. 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
  532. 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
  533. 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
  534. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  535. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  536. 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
  537. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  538. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  539. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  540. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  541. 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
  542. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pip-26.2.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  543. 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
  544. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/__init__.py +3303 -0
  545. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/__init__.py +0 -0
  546. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/appdirs.py +608 -0
  547. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__about__.py +26 -0
  548. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/__init__.py +25 -0
  549. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +301 -0
  550. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +136 -0
  551. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/_structures.py +67 -0
  552. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/markers.py +304 -0
  553. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/requirements.py +146 -0
  554. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/specifiers.py +828 -0
  555. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/tags.py +484 -0
  556. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/utils.py +136 -0
  557. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/packaging/version.py +504 -0
  558. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/_vendor/pyparsing.py +5742 -0
  559. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/extern/__init__.py +73 -0
  560. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pkg_resources/tests/data/my-test-package-source/setup.py +6 -0
  561. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/__init__.py +31 -0
  562. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/_impl.py +410 -0
  563. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/_in_process/__init__.py +21 -0
  564. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/_in_process/_in_process.py +389 -0
  565. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks/py.typed +0 -0
  566. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/INSTALLER +1 -0
  567. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/LICENSE +21 -0
  568. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/METADATA +25 -0
  569. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/RECORD +14 -0
  570. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/pyproject_hooks-1.2.0.dist-info/WHEEL +4 -0
  571. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/__init__.py +242 -0
  572. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_deprecation_warning.py +7 -0
  573. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/__init__.py +24 -0
  574. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/_msvccompiler.py +561 -0
  575. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/archive_util.py +256 -0
  576. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/bcppcompiler.py +393 -0
  577. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/ccompiler.py +1123 -0
  578. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/cmd.py +403 -0
  579. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/__init__.py +31 -0
  580. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist.py +143 -0
  581. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_dumb.py +123 -0
  582. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_msi.py +749 -0
  583. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_rpm.py +579 -0
  584. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/bdist_wininst.py +377 -0
  585. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build.py +157 -0
  586. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build_clib.py +209 -0
  587. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build_ext.py +755 -0
  588. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build_py.py +392 -0
  589. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/build_scripts.py +152 -0
  590. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/check.py +148 -0
  591. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/clean.py +76 -0
  592. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/config.py +344 -0
  593. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install.py +721 -0
  594. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_data.py +79 -0
  595. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_egg_info.py +84 -0
  596. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_headers.py +47 -0
  597. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_lib.py +217 -0
  598. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/install_scripts.py +60 -0
  599. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/py37compat.py +30 -0
  600. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/register.py +304 -0
  601. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/sdist.py +494 -0
  602. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/command/upload.py +214 -0
  603. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/config.py +130 -0
  604. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/core.py +249 -0
  605. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/cygwinccompiler.py +425 -0
  606. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/debug.py +5 -0
  607. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/dep_util.py +92 -0
  608. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/dir_util.py +210 -0
  609. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/dist.py +1257 -0
  610. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/errors.py +97 -0
  611. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/extension.py +240 -0
  612. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/fancy_getopt.py +457 -0
  613. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/file_util.py +238 -0
  614. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/filelist.py +355 -0
  615. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/log.py +77 -0
  616. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/msvc9compiler.py +788 -0
  617. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/msvccompiler.py +643 -0
  618. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/py35compat.py +19 -0
  619. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/py38compat.py +7 -0
  620. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/spawn.py +106 -0
  621. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/sysconfig.py +601 -0
  622. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/text_file.py +286 -0
  623. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/unixccompiler.py +325 -0
  624. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/util.py +548 -0
  625. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/version.py +363 -0
  626. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_distutils/versionpredicate.py +169 -0
  627. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_imp.py +82 -0
  628. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/__init__.py +0 -0
  629. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/__init__.py +4 -0
  630. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/more.py +3825 -0
  631. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/more_itertools/recipes.py +620 -0
  632. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/ordered_set.py +488 -0
  633. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__about__.py +26 -0
  634. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/__init__.py +25 -0
  635. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_manylinux.py +301 -0
  636. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_musllinux.py +136 -0
  637. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/_structures.py +67 -0
  638. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/markers.py +304 -0
  639. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/requirements.py +146 -0
  640. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/specifiers.py +828 -0
  641. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/tags.py +484 -0
  642. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/utils.py +136 -0
  643. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/packaging/version.py +504 -0
  644. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/_vendor/pyparsing.py +5742 -0
  645. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/archive_util.py +205 -0
  646. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/build_meta.py +290 -0
  647. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/cli-32.exe +0 -0
  648. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/cli-64.exe +0 -0
  649. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/cli-arm64.exe +0 -0
  650. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/cli.exe +0 -0
  651. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/__init__.py +8 -0
  652. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/alias.py +78 -0
  653. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/bdist_egg.py +456 -0
  654. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/bdist_rpm.py +40 -0
  655. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/build_clib.py +101 -0
  656. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/build_ext.py +328 -0
  657. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/build_py.py +242 -0
  658. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/develop.py +193 -0
  659. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/dist_info.py +36 -0
  660. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/easy_install.py +2354 -0
  661. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/egg_info.py +755 -0
  662. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/install.py +132 -0
  663. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/install_egg_info.py +82 -0
  664. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/install_lib.py +148 -0
  665. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/install_scripts.py +69 -0
  666. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/launcher manifest.xml +15 -0
  667. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/py36compat.py +134 -0
  668. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/register.py +18 -0
  669. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/rotate.py +64 -0
  670. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/saveopts.py +22 -0
  671. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/sdist.py +196 -0
  672. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/setopt.py +149 -0
  673. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/test.py +252 -0
  674. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/upload.py +17 -0
  675. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/command/upload_docs.py +202 -0
  676. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/config.py +751 -0
  677. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/dep_util.py +25 -0
  678. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/depends.py +176 -0
  679. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/dist.py +1156 -0
  680. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/errors.py +40 -0
  681. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/extension.py +55 -0
  682. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/extern/__init__.py +73 -0
  683. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/glob.py +167 -0
  684. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/gui-32.exe +0 -0
  685. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/gui-64.exe +0 -0
  686. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/gui-arm64.exe +0 -0
  687. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/gui.exe +0 -0
  688. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/installer.py +104 -0
  689. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/launch.py +36 -0
  690. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/monkey.py +177 -0
  691. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/msvc.py +1805 -0
  692. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/namespaces.py +107 -0
  693. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/package_index.py +1176 -0
  694. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/py34compat.py +13 -0
  695. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/sandbox.py +530 -0
  696. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/script (dev).tmpl +6 -0
  697. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/script.tmpl +3 -0
  698. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/unicode_utils.py +42 -0
  699. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/version.py +6 -0
  700. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/wheel.py +213 -0
  701. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools/windows_support.py +29 -0
  702. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/INSTALLER +1 -0
  703. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/LICENSE +19 -0
  704. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/METADATA +125 -0
  705. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/RECORD +298 -0
  706. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/REQUESTED +0 -0
  707. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/WHEEL +5 -0
  708. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/entry_points.txt +56 -0
  709. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/setuptools-59.6.0.dist-info/top_level.txt +4 -0
  710. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/__init__.py +8 -0
  711. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/_parser.py +793 -0
  712. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/_re.py +119 -0
  713. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/_types.py +10 -0
  714. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli/py.typed +1 -0
  715. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/INSTALLER +1 -0
  716. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/METADATA +265 -0
  717. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/RECORD +14 -0
  718. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/WHEEL +4 -0
  719. ailinuxweb-0.1.0/.buildvenv/lib/python3.10/site-packages/tomli-2.4.1.dist-info/licenses/LICENSE +21 -0
  720. ailinuxweb-0.1.0/.buildvenv/pyvenv.cfg +3 -0
  721. ailinuxweb-0.1.0/LICENSE +21 -0
  722. ailinuxweb-0.1.0/PKG-INFO +127 -0
  723. ailinuxweb-0.1.0/README.md +100 -0
  724. ailinuxweb-0.1.0/pyproject.toml +41 -0
  725. ailinuxweb-0.1.0/src/ailinuxweb/__init__.py +0 -0
  726. ailinuxweb-0.1.0/src/ailinuxweb/app.py +6982 -0
  727. ailinuxweb-0.1.0/src/ailinuxweb/static/css/style.css +2804 -0
  728. ailinuxweb-0.1.0/src/ailinuxweb/static/js/account.js +431 -0
  729. ailinuxweb-0.1.0/src/ailinuxweb/static/js/auth-guard.js +37 -0
  730. ailinuxweb-0.1.0/src/ailinuxweb/static/js/channels.js +330 -0
  731. ailinuxweb-0.1.0/src/ailinuxweb/static/js/decoy.js +262 -0
  732. ailinuxweb-0.1.0/src/ailinuxweb/static/js/file-tree.js +686 -0
  733. ailinuxweb-0.1.0/src/ailinuxweb/static/js/litellm.js +386 -0
  734. ailinuxweb-0.1.0/src/ailinuxweb/static/js/live-sessions.js +191 -0
  735. ailinuxweb-0.1.0/src/ailinuxweb/static/js/lock-screen.js +570 -0
  736. ailinuxweb-0.1.0/src/ailinuxweb/static/js/notify.js +311 -0
  737. ailinuxweb-0.1.0/src/ailinuxweb/static/js/path-autocomplete.js +109 -0
  738. ailinuxweb-0.1.0/src/ailinuxweb/static/js/prefs.js +92 -0
  739. ailinuxweb-0.1.0/src/ailinuxweb/static/js/session-browser.js +516 -0
  740. ailinuxweb-0.1.0/src/ailinuxweb/static/js/settings.js +174 -0
  741. ailinuxweb-0.1.0/src/ailinuxweb/static/js/ssh-terminal.js +195 -0
  742. ailinuxweb-0.1.0/src/ailinuxweb/static/js/system.js +236 -0
  743. ailinuxweb-0.1.0/src/ailinuxweb/static/js/terminal.js +1272 -0
  744. ailinuxweb-0.1.0/src/ailinuxweb/static/js/three-col.js +184 -0
  745. ailinuxweb-0.1.0/src/ailinuxweb/templates/index.html +1032 -0
  746. 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 pip._internal.cli.main import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
@@ -0,0 +1,8 @@
1
+ #!/root/home/test33/ailinuxweb-pkg/.buildvenv/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from pip._internal.cli.main import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
@@ -0,0 +1,8 @@
1
+ #!/root/home/test33/ailinuxweb-pkg/.buildvenv/bin/python3
2
+ # -*- coding: utf-8 -*-
3
+ import re
4
+ import sys
5
+ from pip._internal.cli.main import main
6
+ if __name__ == '__main__':
7
+ sys.argv[0] = re.sub(r'(-script\.pyw|\.exe)?$', '', sys.argv[0])
8
+ sys.exit(main())
@@ -0,0 +1,8 @@
1
+ #!/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__