highlightjs-opl 1.0.2 → 1.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3397) hide show
  1. package/.github/workflows/build.yaml +63 -0
  2. package/.gitmodules +3 -0
  3. package/.local/python/bin/Activate.ps1 +247 -0
  4. package/.local/python/bin/activate +70 -0
  5. package/.local/python/bin/activate.csh +27 -0
  6. package/.local/python/bin/activate.fish +69 -0
  7. package/.local/python/bin/pip +8 -0
  8. package/.local/python/bin/pip3 +8 -0
  9. package/.local/python/bin/pip3.12 +8 -0
  10. package/.local/python/bin/pipenv +8 -0
  11. package/.local/python/bin/pipenv-resolver +8 -0
  12. package/.local/python/bin/virtualenv +8 -0
  13. package/.local/python/bin/wheel +8 -0
  14. package/.local/python/lib/python3.12/site-packages/_distutils_hack/__init__.py +239 -0
  15. package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/__init__.cpython-312.pyc +0 -0
  16. package/.local/python/lib/python3.12/site-packages/_distutils_hack/__pycache__/override.cpython-312.pyc +0 -0
  17. package/.local/python/lib/python3.12/site-packages/_distutils_hack/override.py +1 -0
  18. package/.local/python/lib/python3.12/site-packages/benchmarks/__pycache__/benchmark.cpython-312.pyc +0 -0
  19. package/.local/python/lib/python3.12/site-packages/benchmarks/benchmark.py +408 -0
  20. package/.local/python/lib/python3.12/site-packages/certifi/__init__.py +4 -0
  21. package/.local/python/lib/python3.12/site-packages/certifi/__main__.py +12 -0
  22. package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  23. package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  24. package/.local/python/lib/python3.12/site-packages/certifi/__pycache__/core.cpython-312.pyc +0 -0
  25. package/.local/python/lib/python3.12/site-packages/certifi/cacert.pem +4494 -0
  26. package/.local/python/lib/python3.12/site-packages/certifi/core.py +83 -0
  27. package/.local/python/lib/python3.12/site-packages/certifi/py.typed +0 -0
  28. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/INSTALLER +1 -0
  29. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/METADATA +78 -0
  30. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/RECORD +15 -0
  31. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/REQUESTED +0 -0
  32. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/WHEEL +5 -0
  33. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/licenses/LICENSE +20 -0
  34. package/.local/python/lib/python3.12/site-packages/certifi-2026.2.25.dist-info/top_level.txt +1 -0
  35. package/.local/python/lib/python3.12/site-packages/distlib/__init__.py +33 -0
  36. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  37. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  38. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/database.cpython-312.pyc +0 -0
  39. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/index.cpython-312.pyc +0 -0
  40. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/locators.cpython-312.pyc +0 -0
  41. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/manifest.cpython-312.pyc +0 -0
  42. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/markers.cpython-312.pyc +0 -0
  43. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/metadata.cpython-312.pyc +0 -0
  44. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  45. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  46. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/util.cpython-312.pyc +0 -0
  47. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/version.cpython-312.pyc +0 -0
  48. package/.local/python/lib/python3.12/site-packages/distlib/__pycache__/wheel.cpython-312.pyc +0 -0
  49. package/.local/python/lib/python3.12/site-packages/distlib/compat.py +1137 -0
  50. package/.local/python/lib/python3.12/site-packages/distlib/database.py +1329 -0
  51. package/.local/python/lib/python3.12/site-packages/distlib/index.py +508 -0
  52. package/.local/python/lib/python3.12/site-packages/distlib/locators.py +1295 -0
  53. package/.local/python/lib/python3.12/site-packages/distlib/manifest.py +384 -0
  54. package/.local/python/lib/python3.12/site-packages/distlib/markers.py +164 -0
  55. package/.local/python/lib/python3.12/site-packages/distlib/metadata.py +1031 -0
  56. package/.local/python/lib/python3.12/site-packages/distlib/resources.py +358 -0
  57. package/.local/python/lib/python3.12/site-packages/distlib/scripts.py +447 -0
  58. package/.local/python/lib/python3.12/site-packages/distlib/t32.exe +0 -0
  59. package/.local/python/lib/python3.12/site-packages/distlib/t64-arm.exe +0 -0
  60. package/.local/python/lib/python3.12/site-packages/distlib/t64.exe +0 -0
  61. package/.local/python/lib/python3.12/site-packages/distlib/util.py +1984 -0
  62. package/.local/python/lib/python3.12/site-packages/distlib/version.py +750 -0
  63. package/.local/python/lib/python3.12/site-packages/distlib/w32.exe +0 -0
  64. package/.local/python/lib/python3.12/site-packages/distlib/w64-arm.exe +0 -0
  65. package/.local/python/lib/python3.12/site-packages/distlib/w64.exe +0 -0
  66. package/.local/python/lib/python3.12/site-packages/distlib/wheel.py +1105 -0
  67. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/INSTALLER +1 -0
  68. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/LICENSE.txt +284 -0
  69. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/METADATA +118 -0
  70. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/RECORD +38 -0
  71. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/WHEEL +6 -0
  72. package/.local/python/lib/python3.12/site-packages/distlib-0.4.0.dist-info/top_level.txt +1 -0
  73. package/.local/python/lib/python3.12/site-packages/distutils-precedence.pth +1 -0
  74. package/.local/python/lib/python3.12/site-packages/filelock/__init__.py +77 -0
  75. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/__init__.cpython-312.pyc +0 -0
  76. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_api.cpython-312.pyc +0 -0
  77. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_error.cpython-312.pyc +0 -0
  78. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_read_write.cpython-312.pyc +0 -0
  79. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_soft.cpython-312.pyc +0 -0
  80. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_unix.cpython-312.pyc +0 -0
  81. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_util.cpython-312.pyc +0 -0
  82. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/_windows.cpython-312.pyc +0 -0
  83. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/asyncio.cpython-312.pyc +0 -0
  84. package/.local/python/lib/python3.12/site-packages/filelock/__pycache__/version.cpython-312.pyc +0 -0
  85. package/.local/python/lib/python3.12/site-packages/filelock/_api.py +578 -0
  86. package/.local/python/lib/python3.12/site-packages/filelock/_error.py +30 -0
  87. package/.local/python/lib/python3.12/site-packages/filelock/_read_write.py +363 -0
  88. package/.local/python/lib/python3.12/site-packages/filelock/_soft.py +127 -0
  89. package/.local/python/lib/python3.12/site-packages/filelock/_unix.py +109 -0
  90. package/.local/python/lib/python3.12/site-packages/filelock/_util.py +53 -0
  91. package/.local/python/lib/python3.12/site-packages/filelock/_windows.py +100 -0
  92. package/.local/python/lib/python3.12/site-packages/filelock/asyncio.py +376 -0
  93. package/.local/python/lib/python3.12/site-packages/filelock/py.typed +0 -0
  94. package/.local/python/lib/python3.12/site-packages/filelock/version.py +34 -0
  95. package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/INSTALLER +1 -0
  96. package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/METADATA +38 -0
  97. package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/RECORD +26 -0
  98. package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/WHEEL +4 -0
  99. package/.local/python/lib/python3.12/site-packages/filelock-3.24.3.dist-info/licenses/LICENSE +21 -0
  100. package/.local/python/lib/python3.12/site-packages/packaging/__init__.py +15 -0
  101. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  102. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  103. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  104. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  105. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  106. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  107. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  108. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  109. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  110. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
  111. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  112. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  113. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  114. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  115. package/.local/python/lib/python3.12/site-packages/packaging/__pycache__/version.cpython-312.pyc +0 -0
  116. package/.local/python/lib/python3.12/site-packages/packaging/_elffile.py +108 -0
  117. package/.local/python/lib/python3.12/site-packages/packaging/_manylinux.py +262 -0
  118. package/.local/python/lib/python3.12/site-packages/packaging/_musllinux.py +85 -0
  119. package/.local/python/lib/python3.12/site-packages/packaging/_parser.py +365 -0
  120. package/.local/python/lib/python3.12/site-packages/packaging/_structures.py +69 -0
  121. package/.local/python/lib/python3.12/site-packages/packaging/_tokenizer.py +193 -0
  122. package/.local/python/lib/python3.12/site-packages/packaging/licenses/__init__.py +147 -0
  123. package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  124. package/.local/python/lib/python3.12/site-packages/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  125. package/.local/python/lib/python3.12/site-packages/packaging/licenses/_spdx.py +799 -0
  126. package/.local/python/lib/python3.12/site-packages/packaging/markers.py +388 -0
  127. package/.local/python/lib/python3.12/site-packages/packaging/metadata.py +978 -0
  128. package/.local/python/lib/python3.12/site-packages/packaging/py.typed +0 -0
  129. package/.local/python/lib/python3.12/site-packages/packaging/pylock.py +635 -0
  130. package/.local/python/lib/python3.12/site-packages/packaging/requirements.py +86 -0
  131. package/.local/python/lib/python3.12/site-packages/packaging/specifiers.py +1068 -0
  132. package/.local/python/lib/python3.12/site-packages/packaging/tags.py +651 -0
  133. package/.local/python/lib/python3.12/site-packages/packaging/utils.py +158 -0
  134. package/.local/python/lib/python3.12/site-packages/packaging/version.py +792 -0
  135. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/INSTALLER +1 -0
  136. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/METADATA +107 -0
  137. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/RECORD +42 -0
  138. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/WHEEL +4 -0
  139. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE +3 -0
  140. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
  141. package/.local/python/lib/python3.12/site-packages/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
  142. package/.local/python/lib/python3.12/site-packages/pip/__init__.py +13 -0
  143. package/.local/python/lib/python3.12/site-packages/pip/__main__.py +24 -0
  144. package/.local/python/lib/python3.12/site-packages/pip/__pip-runner__.py +50 -0
  145. package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__init__.cpython-312.pyc +0 -0
  146. package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__main__.cpython-312.pyc +0 -0
  147. package/.local/python/lib/python3.12/site-packages/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
  148. package/.local/python/lib/python3.12/site-packages/pip/_internal/__init__.py +18 -0
  149. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
  150. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
  151. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
  152. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
  153. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
  154. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
  155. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
  156. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
  157. package/.local/python/lib/python3.12/site-packages/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
  158. package/.local/python/lib/python3.12/site-packages/pip/_internal/build_env.py +606 -0
  159. package/.local/python/lib/python3.12/site-packages/pip/_internal/cache.py +291 -0
  160. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__init__.py +3 -0
  161. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  162. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
  163. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
  164. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
  165. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
  166. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
  167. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
  168. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
  169. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
  170. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
  171. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
  172. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
  173. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
  174. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/autocompletion.py +184 -0
  175. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/base_command.py +255 -0
  176. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
  177. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/command_context.py +28 -0
  178. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/index_command.py +195 -0
  179. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main.py +85 -0
  180. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/main_parser.py +136 -0
  181. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/parser.py +358 -0
  182. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/progress_bars.py +153 -0
  183. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/req_command.py +447 -0
  184. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/spinners.py +235 -0
  185. package/.local/python/lib/python3.12/site-packages/pip/_internal/cli/status_codes.py +6 -0
  186. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__init__.py +139 -0
  187. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  188. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
  189. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
  190. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
  191. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
  192. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
  193. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
  194. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
  195. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
  196. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
  197. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
  198. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
  199. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
  200. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
  201. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
  202. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
  203. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
  204. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
  205. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
  206. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/cache.py +255 -0
  207. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/check.py +66 -0
  208. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/completion.py +136 -0
  209. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/configuration.py +288 -0
  210. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/debug.py +203 -0
  211. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/download.py +146 -0
  212. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/freeze.py +107 -0
  213. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/hash.py +58 -0
  214. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/help.py +40 -0
  215. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/index.py +166 -0
  216. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/inspect.py +92 -0
  217. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/install.py +810 -0
  218. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/list.py +398 -0
  219. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/lock.py +175 -0
  220. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/search.py +178 -0
  221. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/show.py +231 -0
  222. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/uninstall.py +113 -0
  223. package/.local/python/lib/python3.12/site-packages/pip/_internal/commands/wheel.py +171 -0
  224. package/.local/python/lib/python3.12/site-packages/pip/_internal/configuration.py +396 -0
  225. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__init__.py +21 -0
  226. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
  227. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
  228. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
  229. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
  230. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
  231. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/base.py +55 -0
  232. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/installed.py +33 -0
  233. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/sdist.py +164 -0
  234. package/.local/python/lib/python3.12/site-packages/pip/_internal/distributions/wheel.py +44 -0
  235. package/.local/python/lib/python3.12/site-packages/pip/_internal/exceptions.py +971 -0
  236. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__init__.py +1 -0
  237. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
  238. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
  239. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
  240. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
  241. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/collector.py +488 -0
  242. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/package_finder.py +1125 -0
  243. package/.local/python/lib/python3.12/site-packages/pip/_internal/index/sources.py +287 -0
  244. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__init__.py +440 -0
  245. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
  246. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
  247. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
  248. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
  249. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_distutils.py +173 -0
  250. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
  251. package/.local/python/lib/python3.12/site-packages/pip/_internal/locations/base.py +82 -0
  252. package/.local/python/lib/python3.12/site-packages/pip/_internal/main.py +12 -0
  253. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__init__.py +169 -0
  254. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  255. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
  256. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
  257. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
  258. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/_json.py +87 -0
  259. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/base.py +685 -0
  260. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
  261. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
  262. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
  263. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
  264. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
  265. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
  266. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
  267. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
  268. package/.local/python/lib/python3.12/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
  269. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__init__.py +1 -0
  270. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
  271. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
  272. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
  273. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
  274. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
  275. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
  276. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
  277. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/release_control.cpython-312.pyc +0 -0
  278. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
  279. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
  280. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
  281. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
  282. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
  283. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/candidate.py +25 -0
  284. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/direct_url.py +227 -0
  285. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/format_control.py +78 -0
  286. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/index.py +28 -0
  287. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/installation_report.py +57 -0
  288. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/link.py +617 -0
  289. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/release_control.py +92 -0
  290. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/scheme.py +25 -0
  291. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/search_scope.py +126 -0
  292. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/selection_prefs.py +56 -0
  293. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/target_python.py +122 -0
  294. package/.local/python/lib/python3.12/site-packages/pip/_internal/models/wheel.py +80 -0
  295. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__init__.py +1 -0
  296. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
  297. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
  298. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
  299. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
  300. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
  301. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
  302. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
  303. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
  304. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/auth.py +568 -0
  305. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/cache.py +128 -0
  306. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/download.py +341 -0
  307. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
  308. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/session.py +532 -0
  309. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/utils.py +98 -0
  310. package/.local/python/lib/python3.12/site-packages/pip/_internal/network/xmlrpc.py +61 -0
  311. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__init__.py +0 -0
  312. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
  313. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
  314. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
  315. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
  316. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  317. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
  318. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
  319. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
  320. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
  321. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
  322. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
  323. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/build_tracker.py +140 -0
  324. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata.py +38 -0
  325. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/metadata_editable.py +41 -0
  326. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel.py +38 -0
  327. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/build/wheel_editable.py +47 -0
  328. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/check.py +175 -0
  329. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/freeze.py +259 -0
  330. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__init__.py +1 -0
  331. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
  332. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
  333. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/install/wheel.py +745 -0
  334. package/.local/python/lib/python3.12/site-packages/pip/_internal/operations/prepare.py +747 -0
  335. package/.local/python/lib/python3.12/site-packages/pip/_internal/pyproject.py +123 -0
  336. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__init__.py +103 -0
  337. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
  338. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
  339. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/pep723.cpython-312.pyc +0 -0
  340. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
  341. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
  342. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
  343. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
  344. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
  345. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/constructors.py +568 -0
  346. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/pep723.py +41 -0
  347. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
  348. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_file.py +631 -0
  349. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_install.py +828 -0
  350. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_set.py +81 -0
  351. package/.local/python/lib/python3.12/site-packages/pip/_internal/req/req_uninstall.py +639 -0
  352. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__init__.py +0 -0
  353. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
  354. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
  355. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/base.py +20 -0
  356. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  357. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
  358. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
  359. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
  360. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  361. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  362. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
  363. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
  364. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
  365. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
  366. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
  367. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
  368. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
  369. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
  370. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
  371. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
  372. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
  373. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  374. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
  375. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  376. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
  377. package/.local/python/lib/python3.12/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  378. package/.local/python/lib/python3.12/site-packages/pip/_internal/self_outdated_check.py +255 -0
  379. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__init__.py +0 -0
  380. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  381. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
  382. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
  383. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
  384. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
  385. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
  386. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  387. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
  388. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
  389. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
  390. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
  391. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
  392. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
  393. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
  394. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
  395. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
  396. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
  397. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
  398. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/pylock.cpython-312.pyc +0 -0
  399. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
  400. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
  401. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
  402. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
  403. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
  404. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  405. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
  406. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
  407. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/_log.py +38 -0
  408. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/appdirs.py +52 -0
  409. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compat.py +85 -0
  410. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
  411. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/datetime.py +28 -0
  412. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/deprecation.py +126 -0
  413. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
  414. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/egg_link.py +81 -0
  415. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/entrypoints.py +88 -0
  416. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filesystem.py +203 -0
  417. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/filetypes.py +24 -0
  418. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/glibc.py +102 -0
  419. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/hashes.py +150 -0
  420. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/logging.py +396 -0
  421. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/misc.py +771 -0
  422. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/packaging.py +44 -0
  423. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/pylock.py +116 -0
  424. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/retry.py +45 -0
  425. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/subprocess.py +248 -0
  426. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/temp_dir.py +294 -0
  427. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/unpacking.py +362 -0
  428. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/urls.py +55 -0
  429. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/virtualenv.py +105 -0
  430. package/.local/python/lib/python3.12/site-packages/pip/_internal/utils/wheel.py +132 -0
  431. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__init__.py +15 -0
  432. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
  433. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
  434. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
  435. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
  436. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
  437. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
  438. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/bazaar.py +130 -0
  439. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/git.py +571 -0
  440. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/mercurial.py +186 -0
  441. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/subversion.py +335 -0
  442. package/.local/python/lib/python3.12/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
  443. package/.local/python/lib/python3.12/site-packages/pip/_internal/wheel_builder.py +261 -0
  444. package/.local/python/lib/python3.12/site-packages/pip/_vendor/README.rst +180 -0
  445. package/.local/python/lib/python3.12/site-packages/pip/_vendor/__init__.py +117 -0
  446. package/.local/python/lib/python3.12/site-packages/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  447. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  448. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
  449. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
  450. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
  451. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
  452. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
  453. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
  454. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
  455. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
  456. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
  457. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
  458. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
  459. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
  460. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
  461. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  462. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
  463. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
  464. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
  465. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  466. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  467. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
  468. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
  469. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
  470. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
  471. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
  472. package/.local/python/lib/python3.12/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
  473. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/LICENSE +20 -0
  474. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__init__.py +4 -0
  475. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__main__.py +12 -0
  476. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  477. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  478. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
  479. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
  480. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/core.py +83 -0
  481. package/.local/python/lib/python3.12/site-packages/pip/_vendor/certifi/py.typed +0 -0
  482. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  483. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
  484. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
  485. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
  486. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
  487. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
  488. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
  489. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
  490. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
  491. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
  492. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
  493. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
  494. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
  495. package/.local/python/lib/python3.12/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
  496. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
  497. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__init__.py +33 -0
  498. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  499. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  500. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  501. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  502. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
  503. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/compat.py +1137 -0
  504. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/resources.py +358 -0
  505. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/scripts.py +447 -0
  506. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t32.exe +0 -0
  507. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
  508. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/t64.exe +0 -0
  509. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/util.py +1984 -0
  510. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w32.exe +0 -0
  511. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
  512. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distlib/w64.exe +0 -0
  513. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/LICENSE +202 -0
  514. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__init__.py +54 -0
  515. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__main__.py +4 -0
  516. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
  517. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
  518. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
  519. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/distro.py +1403 -0
  520. package/.local/python/lib/python3.12/site-packages/pip/_vendor/distro/py.typed +0 -0
  521. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
  522. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__init__.py +45 -0
  523. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  524. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
  525. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
  526. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
  527. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  528. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  529. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  530. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  531. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/codec.py +122 -0
  532. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/compat.py +15 -0
  533. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/core.py +437 -0
  534. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
  535. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/intranges.py +57 -0
  536. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/package_data.py +1 -0
  537. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/py.typed +0 -0
  538. package/.local/python/lib/python3.12/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
  539. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/COPYING +14 -0
  540. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
  541. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
  542. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
  543. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
  544. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
  545. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
  546. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/ext.py +170 -0
  547. package/.local/python/lib/python3.12/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
  548. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE +3 -0
  549. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  550. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
  551. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__init__.py +15 -0
  552. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  553. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  554. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  555. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  556. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  557. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  558. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  559. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  560. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  561. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
  562. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  563. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  564. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  565. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  566. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  567. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
  568. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
  569. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
  570. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_parser.py +365 -0
  571. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_structures.py +69 -0
  572. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
  573. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
  574. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  575. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  576. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
  577. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/markers.py +388 -0
  578. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/metadata.py +978 -0
  579. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/py.typed +0 -0
  580. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/pylock.py +635 -0
  581. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/requirements.py +86 -0
  582. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
  583. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/tags.py +651 -0
  584. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/utils.py +158 -0
  585. package/.local/python/lib/python3.12/site-packages/pip/_vendor/packaging/version.py +792 -0
  586. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
  587. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
  588. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
  589. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
  590. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
  591. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
  592. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  593. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  594. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  595. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  596. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  597. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  598. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  599. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  600. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/android.py +249 -0
  601. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/api.py +299 -0
  602. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
  603. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
  604. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
  605. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/version.py +34 -0
  606. package/.local/python/lib/python3.12/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
  607. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/LICENSE +25 -0
  608. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__init__.py +82 -0
  609. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__main__.py +17 -0
  610. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
  611. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
  612. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
  613. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
  614. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
  615. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
  616. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
  617. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
  618. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
  619. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
  620. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
  621. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
  622. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
  623. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
  624. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
  625. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/console.py +70 -0
  626. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filter.py +70 -0
  627. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
  628. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
  629. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatter.py +129 -0
  630. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
  631. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
  632. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
  633. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  634. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexer.py +963 -0
  635. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
  636. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
  637. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
  638. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
  639. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  640. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
  641. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/modeline.py +43 -0
  642. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/plugin.py +72 -0
  643. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
  644. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/scanner.py +104 -0
  645. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
  646. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/style.py +203 -0
  647. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
  648. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  649. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
  650. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
  651. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/token.py +214 -0
  652. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/unistring.py +153 -0
  653. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pygments/util.py +324 -0
  654. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  655. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  656. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
  657. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
  658. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  659. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  660. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
  661. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
  662. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  663. package/.local/python/lib/python3.12/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
  664. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/LICENSE +175 -0
  665. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__init__.py +179 -0
  666. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
  667. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
  668. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
  669. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
  670. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
  671. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
  672. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
  673. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
  674. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
  675. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
  676. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
  677. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
  678. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
  679. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
  680. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
  681. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
  682. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
  683. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
  684. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/__version__.py +14 -0
  685. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
  686. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/adapters.py +696 -0
  687. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/api.py +157 -0
  688. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/auth.py +314 -0
  689. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/certs.py +17 -0
  690. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/compat.py +90 -0
  691. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/cookies.py +561 -0
  692. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/exceptions.py +151 -0
  693. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/help.py +127 -0
  694. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/hooks.py +33 -0
  695. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/models.py +1039 -0
  696. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/packages.py +25 -0
  697. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/sessions.py +831 -0
  698. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/status_codes.py +128 -0
  699. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/structures.py +99 -0
  700. package/.local/python/lib/python3.12/site-packages/pip/_vendor/requests/utils.py +1086 -0
  701. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
  702. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
  703. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  704. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
  705. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
  706. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
  707. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
  708. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
  709. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
  710. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  711. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
  712. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
  713. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
  714. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
  715. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
  716. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  717. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  718. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  719. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  720. package/.local/python/lib/python3.12/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
  721. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/LICENSE +19 -0
  722. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__init__.py +177 -0
  723. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__main__.py +245 -0
  724. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
  725. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
  726. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
  727. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
  728. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
  729. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
  730. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
  731. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
  732. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
  733. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
  734. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
  735. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
  736. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
  737. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
  738. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
  739. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
  740. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
  741. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
  742. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
  743. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
  744. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
  745. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
  746. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
  747. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
  748. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
  749. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
  750. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
  751. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
  752. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
  753. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
  754. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
  755. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
  756. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
  757. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
  758. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
  759. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
  760. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
  761. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
  762. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
  763. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
  764. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
  765. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
  766. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
  767. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
  768. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
  769. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
  770. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
  771. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
  772. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
  773. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
  774. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
  775. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
  776. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
  777. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
  778. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
  779. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
  780. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
  781. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
  782. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
  783. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
  784. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
  785. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
  786. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
  787. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
  788. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
  789. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
  790. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
  791. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
  792. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
  793. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
  794. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
  795. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
  796. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
  797. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
  798. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
  799. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
  800. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
  801. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
  802. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
  803. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
  804. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_export_format.py +76 -0
  805. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_extension.py +10 -0
  806. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_fileno.py +24 -0
  807. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_inspect.py +268 -0
  808. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_log_render.py +94 -0
  809. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_loop.py +43 -0
  810. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_null_file.py +69 -0
  811. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_palettes.py +309 -0
  812. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_pick.py +17 -0
  813. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_ratio.py +153 -0
  814. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_spinners.py +482 -0
  815. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_stack.py +16 -0
  816. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_timer.py +19 -0
  817. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
  818. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows.py +71 -0
  819. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
  820. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/_wrap.py +93 -0
  821. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/abc.py +33 -0
  822. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/align.py +306 -0
  823. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/ansi.py +241 -0
  824. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/bar.py +93 -0
  825. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/box.py +474 -0
  826. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/cells.py +174 -0
  827. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color.py +621 -0
  828. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
  829. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/columns.py +187 -0
  830. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/console.py +2680 -0
  831. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/constrain.py +37 -0
  832. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/containers.py +167 -0
  833. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/control.py +219 -0
  834. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/default_styles.py +193 -0
  835. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/diagnose.py +39 -0
  836. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/emoji.py +91 -0
  837. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/errors.py +34 -0
  838. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
  839. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/filesize.py +88 -0
  840. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/highlighter.py +232 -0
  841. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/json.py +139 -0
  842. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/jupyter.py +101 -0
  843. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/layout.py +442 -0
  844. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live.py +400 -0
  845. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/live_render.py +106 -0
  846. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/logging.py +297 -0
  847. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/markup.py +251 -0
  848. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/measure.py +151 -0
  849. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/padding.py +141 -0
  850. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pager.py +34 -0
  851. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/palette.py +100 -0
  852. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/panel.py +317 -0
  853. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/pretty.py +1016 -0
  854. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress.py +1715 -0
  855. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
  856. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/prompt.py +400 -0
  857. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/protocol.py +42 -0
  858. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/py.typed +0 -0
  859. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/region.py +10 -0
  860. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/repr.py +149 -0
  861. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/rule.py +130 -0
  862. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/scope.py +86 -0
  863. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/screen.py +54 -0
  864. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/segment.py +752 -0
  865. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/spinner.py +132 -0
  866. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/status.py +131 -0
  867. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/style.py +792 -0
  868. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/styled.py +42 -0
  869. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/syntax.py +985 -0
  870. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/table.py +1006 -0
  871. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
  872. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/text.py +1361 -0
  873. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/theme.py +115 -0
  874. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/themes.py +5 -0
  875. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/traceback.py +899 -0
  876. package/.local/python/lib/python3.12/site-packages/pip/_vendor/rich/tree.py +257 -0
  877. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/LICENSE +21 -0
  878. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__init__.py +8 -0
  879. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  880. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  881. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  882. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  883. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_parser.py +777 -0
  884. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_re.py +115 -0
  885. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/_types.py +10 -0
  886. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli/py.typed +1 -0
  887. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
  888. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
  889. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
  890. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
  891. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
  892. package/.local/python/lib/python3.12/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
  893. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/LICENSE +21 -0
  894. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__init__.py +36 -0
  895. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
  896. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
  897. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
  898. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
  899. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
  900. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
  901. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_api.py +341 -0
  902. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_macos.py +571 -0
  903. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
  904. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
  905. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/_windows.py +567 -0
  906. package/.local/python/lib/python3.12/site-packages/pip/_vendor/truststore/py.typed +0 -0
  907. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
  908. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
  909. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
  910. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
  911. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
  912. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
  913. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
  914. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
  915. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
  916. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
  917. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
  918. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
  919. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
  920. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
  921. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/_version.py +2 -0
  922. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connection.py +572 -0
  923. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
  924. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  925. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
  926. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
  927. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
  928. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
  929. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
  930. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
  931. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
  932. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  933. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  934. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
  935. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
  936. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
  937. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  938. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  939. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  940. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  941. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  942. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
  943. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
  944. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
  945. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/fields.py +274 -0
  946. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
  947. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  948. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
  949. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
  950. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  951. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  952. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
  953. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
  954. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  955. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  956. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
  957. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
  958. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/request.py +191 -0
  959. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/response.py +879 -0
  960. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
  961. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
  962. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
  963. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
  964. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
  965. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
  966. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
  967. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
  968. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
  969. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
  970. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
  971. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
  972. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
  973. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
  974. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
  975. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
  976. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
  977. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
  978. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
  979. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
  980. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
  981. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  982. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  983. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
  984. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
  985. package/.local/python/lib/python3.12/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
  986. package/.local/python/lib/python3.12/site-packages/pip/_vendor/vendor.txt +19 -0
  987. package/.local/python/lib/python3.12/site-packages/pip/py.typed +4 -0
  988. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
  989. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
  990. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/RECORD +878 -0
  991. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
  992. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
  993. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
  994. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
  995. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
  996. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  997. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
  998. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  999. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
  1000. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
  1001. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
  1002. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
  1003. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
  1004. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1005. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1006. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
  1007. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
  1008. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
  1009. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1010. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
  1011. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
  1012. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
  1013. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
  1014. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
  1015. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
  1016. package/.local/python/lib/python3.12/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1017. package/.local/python/lib/python3.12/site-packages/pipenv/__init__.py +49 -0
  1018. package/.local/python/lib/python3.12/site-packages/pipenv/__main__.py +4 -0
  1019. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__init__.cpython-312.pyc +0 -0
  1020. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__main__.cpython-312.pyc +0 -0
  1021. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/__version__.cpython-312.pyc +0 -0
  1022. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/cmdparse.cpython-312.pyc +0 -0
  1023. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environment.cpython-312.pyc +0 -0
  1024. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/environments.cpython-312.pyc +0 -0
  1025. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/exceptions.cpython-312.pyc +0 -0
  1026. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/help.cpython-312.pyc +0 -0
  1027. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/installers.cpython-312.pyc +0 -0
  1028. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/pep508checker.cpython-312.pyc +0 -0
  1029. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/project.cpython-312.pyc +0 -0
  1030. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/resolver.cpython-312.pyc +0 -0
  1031. package/.local/python/lib/python3.12/site-packages/pipenv/__pycache__/shells.cpython-312.pyc +0 -0
  1032. package/.local/python/lib/python3.12/site-packages/pipenv/__version__.py +5 -0
  1033. package/.local/python/lib/python3.12/site-packages/pipenv/cli/__init__.py +1 -0
  1034. package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  1035. package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/command.cpython-312.pyc +0 -0
  1036. package/.local/python/lib/python3.12/site-packages/pipenv/cli/__pycache__/options.cpython-312.pyc +0 -0
  1037. package/.local/python/lib/python3.12/site-packages/pipenv/cli/command.py +1208 -0
  1038. package/.local/python/lib/python3.12/site-packages/pipenv/cli/options.py +635 -0
  1039. package/.local/python/lib/python3.12/site-packages/pipenv/cmdparse.py +134 -0
  1040. package/.local/python/lib/python3.12/site-packages/pipenv/environment.py +832 -0
  1041. package/.local/python/lib/python3.12/site-packages/pipenv/environments.py +449 -0
  1042. package/.local/python/lib/python3.12/site-packages/pipenv/exceptions.py +411 -0
  1043. package/.local/python/lib/python3.12/site-packages/pipenv/help.py +86 -0
  1044. package/.local/python/lib/python3.12/site-packages/pipenv/installers.py +233 -0
  1045. package/.local/python/lib/python3.12/site-packages/pipenv/patched/README.md +11 -0
  1046. package/.local/python/lib/python3.12/site-packages/pipenv/patched/__init__.py +0 -0
  1047. package/.local/python/lib/python3.12/site-packages/pipenv/patched/__pycache__/__init__.cpython-312.pyc +0 -0
  1048. package/.local/python/lib/python3.12/site-packages/pipenv/patched/patched.txt +1 -0
  1049. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/COPYING +14 -0
  1050. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE +21 -0
  1051. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.APACHE +177 -0
  1052. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.BSD +23 -0
  1053. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.md +31 -0
  1054. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/LICENSE.txt +21 -0
  1055. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__init__.py +13 -0
  1056. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__main__.py +32 -0
  1057. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pip-runner__.py +50 -0
  1058. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__init__.cpython-312.pyc +0 -0
  1059. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__main__.cpython-312.pyc +0 -0
  1060. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/__pycache__/__pip-runner__.cpython-312.pyc +0 -0
  1061. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__init__.py +18 -0
  1062. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/__init__.cpython-312.pyc +0 -0
  1063. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/build_env.cpython-312.pyc +0 -0
  1064. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/cache.cpython-312.pyc +0 -0
  1065. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/configuration.cpython-312.pyc +0 -0
  1066. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/exceptions.cpython-312.pyc +0 -0
  1067. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/main.cpython-312.pyc +0 -0
  1068. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/pyproject.cpython-312.pyc +0 -0
  1069. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/self_outdated_check.cpython-312.pyc +0 -0
  1070. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/__pycache__/wheel_builder.cpython-312.pyc +0 -0
  1071. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/build_env.py +417 -0
  1072. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cache.py +291 -0
  1073. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__init__.py +3 -0
  1074. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  1075. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/autocompletion.cpython-312.pyc +0 -0
  1076. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/base_command.cpython-312.pyc +0 -0
  1077. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/cmdoptions.cpython-312.pyc +0 -0
  1078. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/command_context.cpython-312.pyc +0 -0
  1079. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/index_command.cpython-312.pyc +0 -0
  1080. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main.cpython-312.pyc +0 -0
  1081. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/main_parser.cpython-312.pyc +0 -0
  1082. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/parser.cpython-312.pyc +0 -0
  1083. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/progress_bars.cpython-312.pyc +0 -0
  1084. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/req_command.cpython-312.pyc +0 -0
  1085. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/spinners.cpython-312.pyc +0 -0
  1086. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/__pycache__/status_codes.cpython-312.pyc +0 -0
  1087. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/autocompletion.py +184 -0
  1088. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/base_command.py +244 -0
  1089. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/cmdoptions.py +1110 -0
  1090. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/command_context.py +28 -0
  1091. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/index_command.py +175 -0
  1092. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main.py +80 -0
  1093. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/main_parser.py +134 -0
  1094. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/parser.py +298 -0
  1095. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/progress_bars.py +151 -0
  1096. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/req_command.py +371 -0
  1097. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/spinners.py +235 -0
  1098. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/cli/status_codes.py +6 -0
  1099. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__init__.py +139 -0
  1100. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/__init__.cpython-312.pyc +0 -0
  1101. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/cache.cpython-312.pyc +0 -0
  1102. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/check.cpython-312.pyc +0 -0
  1103. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/completion.cpython-312.pyc +0 -0
  1104. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/configuration.cpython-312.pyc +0 -0
  1105. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/debug.cpython-312.pyc +0 -0
  1106. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/download.cpython-312.pyc +0 -0
  1107. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/freeze.cpython-312.pyc +0 -0
  1108. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/hash.cpython-312.pyc +0 -0
  1109. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/help.cpython-312.pyc +0 -0
  1110. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/index.cpython-312.pyc +0 -0
  1111. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/inspect.cpython-312.pyc +0 -0
  1112. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/install.cpython-312.pyc +0 -0
  1113. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/list.cpython-312.pyc +0 -0
  1114. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/lock.cpython-312.pyc +0 -0
  1115. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/search.cpython-312.pyc +0 -0
  1116. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/show.cpython-312.pyc +0 -0
  1117. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/uninstall.cpython-312.pyc +0 -0
  1118. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/__pycache__/wheel.cpython-312.pyc +0 -0
  1119. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/cache.py +233 -0
  1120. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/check.py +68 -0
  1121. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/completion.py +137 -0
  1122. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/configuration.py +288 -0
  1123. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/debug.py +203 -0
  1124. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/download.py +144 -0
  1125. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/freeze.py +109 -0
  1126. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/hash.py +60 -0
  1127. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/help.py +42 -0
  1128. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/index.py +159 -0
  1129. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/inspect.py +94 -0
  1130. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/install.py +803 -0
  1131. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/list.py +400 -0
  1132. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/lock.py +169 -0
  1133. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/search.py +178 -0
  1134. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/show.py +231 -0
  1135. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/uninstall.py +115 -0
  1136. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/commands/wheel.py +178 -0
  1137. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/configuration.py +396 -0
  1138. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__init__.py +21 -0
  1139. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/__init__.cpython-312.pyc +0 -0
  1140. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/base.cpython-312.pyc +0 -0
  1141. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/installed.cpython-312.pyc +0 -0
  1142. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/sdist.cpython-312.pyc +0 -0
  1143. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/__pycache__/wheel.cpython-312.pyc +0 -0
  1144. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/base.py +55 -0
  1145. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/installed.py +33 -0
  1146. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/sdist.py +164 -0
  1147. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/distributions/wheel.py +44 -0
  1148. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/exceptions.py +898 -0
  1149. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__init__.py +1 -0
  1150. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/__init__.cpython-312.pyc +0 -0
  1151. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/collector.cpython-312.pyc +0 -0
  1152. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/package_finder.cpython-312.pyc +0 -0
  1153. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/__pycache__/sources.cpython-312.pyc +0 -0
  1154. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/collector.py +494 -0
  1155. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/package_finder.py +1090 -0
  1156. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/index/sources.py +287 -0
  1157. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__init__.py +441 -0
  1158. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/__init__.cpython-312.pyc +0 -0
  1159. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_distutils.cpython-312.pyc +0 -0
  1160. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/_sysconfig.cpython-312.pyc +0 -0
  1161. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/__pycache__/base.cpython-312.pyc +0 -0
  1162. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_distutils.py +173 -0
  1163. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/_sysconfig.py +215 -0
  1164. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/locations/base.py +82 -0
  1165. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/main.py +12 -0
  1166. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__init__.py +169 -0
  1167. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  1168. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/_json.cpython-312.pyc +0 -0
  1169. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/base.cpython-312.pyc +0 -0
  1170. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/__pycache__/pkg_resources.cpython-312.pyc +0 -0
  1171. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/_json.py +87 -0
  1172. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/base.py +685 -0
  1173. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__init__.py +6 -0
  1174. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/__init__.cpython-312.pyc +0 -0
  1175. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_compat.cpython-312.pyc +0 -0
  1176. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_dists.cpython-312.pyc +0 -0
  1177. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/__pycache__/_envs.cpython-312.pyc +0 -0
  1178. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_compat.py +87 -0
  1179. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_dists.py +229 -0
  1180. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/importlib/_envs.py +143 -0
  1181. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/metadata/pkg_resources.py +298 -0
  1182. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__init__.py +1 -0
  1183. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/__init__.cpython-312.pyc +0 -0
  1184. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/candidate.cpython-312.pyc +0 -0
  1185. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/direct_url.cpython-312.pyc +0 -0
  1186. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/format_control.cpython-312.pyc +0 -0
  1187. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/index.cpython-312.pyc +0 -0
  1188. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/installation_report.cpython-312.pyc +0 -0
  1189. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/link.cpython-312.pyc +0 -0
  1190. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/pylock.cpython-312.pyc +0 -0
  1191. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/scheme.cpython-312.pyc +0 -0
  1192. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/search_scope.cpython-312.pyc +0 -0
  1193. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/selection_prefs.cpython-312.pyc +0 -0
  1194. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/target_python.cpython-312.pyc +0 -0
  1195. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/__pycache__/wheel.cpython-312.pyc +0 -0
  1196. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/candidate.py +25 -0
  1197. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/direct_url.py +227 -0
  1198. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/format_control.py +78 -0
  1199. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/index.py +28 -0
  1200. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/installation_report.py +59 -0
  1201. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/link.py +613 -0
  1202. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/pylock.py +188 -0
  1203. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/scheme.py +25 -0
  1204. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/search_scope.py +137 -0
  1205. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/selection_prefs.py +53 -0
  1206. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/target_python.py +122 -0
  1207. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/models/wheel.py +80 -0
  1208. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__init__.py +1 -0
  1209. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/__init__.cpython-312.pyc +0 -0
  1210. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/auth.cpython-312.pyc +0 -0
  1211. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/cache.cpython-312.pyc +0 -0
  1212. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/download.cpython-312.pyc +0 -0
  1213. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/lazy_wheel.cpython-312.pyc +0 -0
  1214. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/session.cpython-312.pyc +0 -0
  1215. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/utils.cpython-312.pyc +0 -0
  1216. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/__pycache__/xmlrpc.cpython-312.pyc +0 -0
  1217. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/auth.py +564 -0
  1218. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/cache.py +128 -0
  1219. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/download.py +342 -0
  1220. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/lazy_wheel.py +215 -0
  1221. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/session.py +528 -0
  1222. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/utils.py +100 -0
  1223. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/network/xmlrpc.py +62 -0
  1224. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__init__.py +0 -0
  1225. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/__init__.cpython-312.pyc +0 -0
  1226. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/check.cpython-312.pyc +0 -0
  1227. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/freeze.cpython-312.pyc +0 -0
  1228. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/__pycache__/prepare.cpython-312.pyc +0 -0
  1229. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__init__.py +0 -0
  1230. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/__init__.cpython-312.pyc +0 -0
  1231. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/build_tracker.cpython-312.pyc +0 -0
  1232. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata.cpython-312.pyc +0 -0
  1233. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/metadata_editable.cpython-312.pyc +0 -0
  1234. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel.cpython-312.pyc +0 -0
  1235. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/__pycache__/wheel_editable.cpython-312.pyc +0 -0
  1236. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/build_tracker.py +140 -0
  1237. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata.py +38 -0
  1238. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/metadata_editable.py +41 -0
  1239. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel.py +38 -0
  1240. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/build/wheel_editable.py +47 -0
  1241. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/check.py +175 -0
  1242. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/freeze.py +259 -0
  1243. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__init__.py +1 -0
  1244. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/__init__.cpython-312.pyc +0 -0
  1245. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/__pycache__/wheel.cpython-312.pyc +0 -0
  1246. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/install/wheel.py +746 -0
  1247. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/operations/prepare.py +748 -0
  1248. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/pyproject.py +123 -0
  1249. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__init__.py +103 -0
  1250. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/__init__.cpython-312.pyc +0 -0
  1251. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/constructors.cpython-312.pyc +0 -0
  1252. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_dependency_group.cpython-312.pyc +0 -0
  1253. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_file.cpython-312.pyc +0 -0
  1254. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_install.cpython-312.pyc +0 -0
  1255. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_set.cpython-312.pyc +0 -0
  1256. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/__pycache__/req_uninstall.cpython-312.pyc +0 -0
  1257. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/constructors.py +566 -0
  1258. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_dependency_group.py +77 -0
  1259. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_file.py +619 -0
  1260. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_install.py +828 -0
  1261. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_set.py +83 -0
  1262. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/req/req_uninstall.py +639 -0
  1263. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__init__.py +0 -0
  1264. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/__init__.cpython-312.pyc +0 -0
  1265. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/__pycache__/base.cpython-312.pyc +0 -0
  1266. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/base.py +22 -0
  1267. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__init__.py +0 -0
  1268. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/__init__.cpython-312.pyc +0 -0
  1269. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/__pycache__/resolver.cpython-312.pyc +0 -0
  1270. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/legacy/resolver.py +598 -0
  1271. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  1272. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  1273. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/base.cpython-312.pyc +0 -0
  1274. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/candidates.cpython-312.pyc +0 -0
  1275. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/factory.cpython-312.pyc +0 -0
  1276. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/found_candidates.cpython-312.pyc +0 -0
  1277. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/provider.cpython-312.pyc +0 -0
  1278. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/reporter.cpython-312.pyc +0 -0
  1279. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/requirements.cpython-312.pyc +0 -0
  1280. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/__pycache__/resolver.cpython-312.pyc +0 -0
  1281. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/base.py +142 -0
  1282. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/candidates.py +595 -0
  1283. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/factory.py +845 -0
  1284. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
  1285. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/provider.py +285 -0
  1286. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/reporter.py +98 -0
  1287. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/requirements.py +247 -0
  1288. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/resolution/resolvelib/resolver.py +332 -0
  1289. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/self_outdated_check.py +262 -0
  1290. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__init__.py +0 -0
  1291. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  1292. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_jaraco_text.cpython-312.pyc +0 -0
  1293. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/_log.cpython-312.pyc +0 -0
  1294. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/appdirs.cpython-312.pyc +0 -0
  1295. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compat.cpython-312.pyc +0 -0
  1296. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/compatibility_tags.cpython-312.pyc +0 -0
  1297. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/datetime.cpython-312.pyc +0 -0
  1298. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/deprecation.cpython-312.pyc +0 -0
  1299. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/direct_url_helpers.cpython-312.pyc +0 -0
  1300. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/egg_link.cpython-312.pyc +0 -0
  1301. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/entrypoints.cpython-312.pyc +0 -0
  1302. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filesystem.cpython-312.pyc +0 -0
  1303. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/filetypes.cpython-312.pyc +0 -0
  1304. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/glibc.cpython-312.pyc +0 -0
  1305. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/hashes.cpython-312.pyc +0 -0
  1306. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/logging.cpython-312.pyc +0 -0
  1307. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/misc.cpython-312.pyc +0 -0
  1308. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/packaging.cpython-312.pyc +0 -0
  1309. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/retry.cpython-312.pyc +0 -0
  1310. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/subprocess.cpython-312.pyc +0 -0
  1311. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/temp_dir.cpython-312.pyc +0 -0
  1312. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/unpacking.cpython-312.pyc +0 -0
  1313. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/urls.cpython-312.pyc +0 -0
  1314. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  1315. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/__pycache__/wheel.cpython-312.pyc +0 -0
  1316. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_jaraco_text.py +109 -0
  1317. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/_log.py +38 -0
  1318. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/appdirs.py +53 -0
  1319. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compat.py +85 -0
  1320. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/compatibility_tags.py +201 -0
  1321. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/datetime.py +10 -0
  1322. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/deprecation.py +126 -0
  1323. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/direct_url_helpers.py +87 -0
  1324. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/egg_link.py +81 -0
  1325. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/entrypoints.py +88 -0
  1326. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filesystem.py +164 -0
  1327. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/filetypes.py +25 -0
  1328. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/glibc.py +102 -0
  1329. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/hashes.py +150 -0
  1330. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/logging.py +364 -0
  1331. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/misc.py +765 -0
  1332. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/packaging.py +44 -0
  1333. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/retry.py +45 -0
  1334. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/subprocess.py +248 -0
  1335. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/temp_dir.py +294 -0
  1336. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/unpacking.py +362 -0
  1337. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/urls.py +55 -0
  1338. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/virtualenv.py +105 -0
  1339. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/utils/wheel.py +133 -0
  1340. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__init__.py +15 -0
  1341. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/__init__.cpython-312.pyc +0 -0
  1342. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/bazaar.cpython-312.pyc +0 -0
  1343. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/git.cpython-312.pyc +0 -0
  1344. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/mercurial.cpython-312.pyc +0 -0
  1345. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/subversion.cpython-312.pyc +0 -0
  1346. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/__pycache__/versioncontrol.cpython-312.pyc +0 -0
  1347. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/bazaar.py +130 -0
  1348. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/git.py +571 -0
  1349. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/mercurial.py +186 -0
  1350. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/subversion.py +335 -0
  1351. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/vcs/versioncontrol.py +693 -0
  1352. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_internal/wheel_builder.py +261 -0
  1353. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__init__.py +117 -0
  1354. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  1355. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
  1356. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__init__.py +29 -0
  1357. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/__init__.cpython-312.pyc +0 -0
  1358. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/_cmd.cpython-312.pyc +0 -0
  1359. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/adapter.cpython-312.pyc +0 -0
  1360. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/cache.cpython-312.pyc +0 -0
  1361. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/controller.cpython-312.pyc +0 -0
  1362. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/filewrapper.cpython-312.pyc +0 -0
  1363. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/heuristics.cpython-312.pyc +0 -0
  1364. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/serialize.cpython-312.pyc +0 -0
  1365. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/__pycache__/wrapper.cpython-312.pyc +0 -0
  1366. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/_cmd.py +70 -0
  1367. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/adapter.py +168 -0
  1368. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/cache.py +75 -0
  1369. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
  1370. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/__init__.cpython-312.pyc +0 -0
  1371. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/file_cache.cpython-312.pyc +0 -0
  1372. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/__pycache__/redis_cache.cpython-312.pyc +0 -0
  1373. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
  1374. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
  1375. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/controller.py +511 -0
  1376. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/filewrapper.py +119 -0
  1377. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/heuristics.py +157 -0
  1378. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/py.typed +0 -0
  1379. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/serialize.py +146 -0
  1380. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/cachecontrol/wrapper.py +43 -0
  1381. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/LICENSE +20 -0
  1382. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__init__.py +4 -0
  1383. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__main__.py +12 -0
  1384. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__init__.cpython-312.pyc +0 -0
  1385. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/__main__.cpython-312.pyc +0 -0
  1386. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/__pycache__/core.cpython-312.pyc +0 -0
  1387. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/cacert.pem +4800 -0
  1388. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/core.py +83 -0
  1389. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/certifi/py.typed +0 -0
  1390. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
  1391. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__init__.py +13 -0
  1392. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__main__.py +65 -0
  1393. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__init__.cpython-312.pyc +0 -0
  1394. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/__main__.cpython-312.pyc +0 -0
  1395. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_implementation.cpython-312.pyc +0 -0
  1396. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_lint_dependency_groups.cpython-312.pyc +0 -0
  1397. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_pip_wrapper.cpython-312.pyc +0 -0
  1398. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/__pycache__/_toml_compat.cpython-312.pyc +0 -0
  1399. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_implementation.py +209 -0
  1400. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
  1401. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
  1402. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
  1403. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/dependency_groups/py.typed +0 -0
  1404. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/LICENSE.txt +284 -0
  1405. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__init__.py +33 -0
  1406. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/__init__.cpython-312.pyc +0 -0
  1407. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/compat.cpython-312.pyc +0 -0
  1408. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/resources.cpython-312.pyc +0 -0
  1409. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/scripts.cpython-312.pyc +0 -0
  1410. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/__pycache__/util.cpython-312.pyc +0 -0
  1411. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/compat.py +1137 -0
  1412. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/resources.py +358 -0
  1413. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/scripts.py +447 -0
  1414. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t32.exe +0 -0
  1415. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64-arm.exe +0 -0
  1416. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/t64.exe +0 -0
  1417. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/util.py +1984 -0
  1418. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w32.exe +0 -0
  1419. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64-arm.exe +0 -0
  1420. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distlib/w64.exe +0 -0
  1421. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/LICENSE +202 -0
  1422. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__init__.py +54 -0
  1423. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__main__.py +4 -0
  1424. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__init__.cpython-312.pyc +0 -0
  1425. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/__main__.cpython-312.pyc +0 -0
  1426. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/__pycache__/distro.cpython-312.pyc +0 -0
  1427. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/distro.py +1403 -0
  1428. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/distro/py.typed +0 -0
  1429. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/LICENSE.md +31 -0
  1430. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__init__.py +45 -0
  1431. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/__init__.cpython-312.pyc +0 -0
  1432. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/codec.cpython-312.pyc +0 -0
  1433. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/compat.cpython-312.pyc +0 -0
  1434. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/core.cpython-312.pyc +0 -0
  1435. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/idnadata.cpython-312.pyc +0 -0
  1436. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/intranges.cpython-312.pyc +0 -0
  1437. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/package_data.cpython-312.pyc +0 -0
  1438. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/__pycache__/uts46data.cpython-312.pyc +0 -0
  1439. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/codec.py +122 -0
  1440. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/compat.py +15 -0
  1441. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/core.py +437 -0
  1442. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/idnadata.py +4243 -0
  1443. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/intranges.py +57 -0
  1444. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/package_data.py +1 -0
  1445. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/py.typed +0 -0
  1446. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/idna/uts46data.py +8681 -0
  1447. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/COPYING +14 -0
  1448. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__init__.py +55 -0
  1449. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/__init__.cpython-312.pyc +0 -0
  1450. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/exceptions.cpython-312.pyc +0 -0
  1451. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/ext.cpython-312.pyc +0 -0
  1452. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/__pycache__/fallback.cpython-312.pyc +0 -0
  1453. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/exceptions.py +48 -0
  1454. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/ext.py +170 -0
  1455. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/msgpack/fallback.py +929 -0
  1456. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE +3 -0
  1457. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.APACHE +177 -0
  1458. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/LICENSE.BSD +23 -0
  1459. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__init__.py +15 -0
  1460. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  1461. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  1462. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  1463. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  1464. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  1465. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  1466. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  1467. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  1468. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  1469. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  1470. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  1471. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  1472. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  1473. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  1474. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_elffile.py +109 -0
  1475. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_manylinux.py +262 -0
  1476. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_musllinux.py +85 -0
  1477. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_parser.py +353 -0
  1478. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_structures.py +61 -0
  1479. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/_tokenizer.py +195 -0
  1480. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__init__.py +145 -0
  1481. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  1482. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  1483. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/licenses/_spdx.py +759 -0
  1484. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/markers.py +362 -0
  1485. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/metadata.py +862 -0
  1486. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/py.typed +0 -0
  1487. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/requirements.py +91 -0
  1488. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/specifiers.py +1019 -0
  1489. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/tags.py +656 -0
  1490. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/utils.py +163 -0
  1491. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/packaging/version.py +582 -0
  1492. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE +17 -0
  1493. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/LICENSE.txt +21 -0
  1494. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__init__.py +3676 -0
  1495. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pkg_resources/__pycache__/__init__.cpython-312.pyc +0 -0
  1496. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__init__.py +631 -0
  1497. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__main__.py +55 -0
  1498. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  1499. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  1500. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  1501. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  1502. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  1503. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  1504. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  1505. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  1506. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/android.py +249 -0
  1507. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/api.py +299 -0
  1508. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/macos.py +146 -0
  1509. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/py.typed +0 -0
  1510. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/unix.py +272 -0
  1511. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/version.py +34 -0
  1512. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/platformdirs/windows.py +272 -0
  1513. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__init__.py +82 -0
  1514. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__main__.py +17 -0
  1515. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__init__.cpython-312.pyc +0 -0
  1516. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/__main__.cpython-312.pyc +0 -0
  1517. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/console.cpython-312.pyc +0 -0
  1518. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/filter.cpython-312.pyc +0 -0
  1519. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/formatter.cpython-312.pyc +0 -0
  1520. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/lexer.cpython-312.pyc +0 -0
  1521. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/modeline.cpython-312.pyc +0 -0
  1522. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/plugin.cpython-312.pyc +0 -0
  1523. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/regexopt.cpython-312.pyc +0 -0
  1524. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/scanner.cpython-312.pyc +0 -0
  1525. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/sphinxext.cpython-312.pyc +0 -0
  1526. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/style.cpython-312.pyc +0 -0
  1527. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/token.cpython-312.pyc +0 -0
  1528. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/unistring.cpython-312.pyc +0 -0
  1529. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/__pycache__/util.cpython-312.pyc +0 -0
  1530. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/console.py +70 -0
  1531. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filter.py +70 -0
  1532. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__init__.py +940 -0
  1533. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/filters/__pycache__/__init__.cpython-312.pyc +0 -0
  1534. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatter.py +129 -0
  1535. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__init__.py +157 -0
  1536. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/__init__.cpython-312.pyc +0 -0
  1537. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/__pycache__/_mapping.cpython-312.pyc +0 -0
  1538. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/formatters/_mapping.py +23 -0
  1539. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexer.py +963 -0
  1540. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__init__.py +362 -0
  1541. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/__init__.cpython-312.pyc +0 -0
  1542. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/_mapping.cpython-312.pyc +0 -0
  1543. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/__pycache__/python.cpython-312.pyc +0 -0
  1544. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/_mapping.py +602 -0
  1545. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/lexers/python.py +1201 -0
  1546. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/modeline.py +43 -0
  1547. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/plugin.py +72 -0
  1548. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/regexopt.py +91 -0
  1549. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/scanner.py +104 -0
  1550. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/sphinxext.py +247 -0
  1551. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/style.py +203 -0
  1552. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__init__.py +61 -0
  1553. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/__init__.cpython-312.pyc +0 -0
  1554. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/__pycache__/_mapping.cpython-312.pyc +0 -0
  1555. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/styles/_mapping.py +54 -0
  1556. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/token.py +214 -0
  1557. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/unistring.py +153 -0
  1558. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pygments/util.py +324 -0
  1559. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/LICENSE +21 -0
  1560. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__init__.py +31 -0
  1561. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/__init__.cpython-312.pyc +0 -0
  1562. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/__pycache__/_impl.cpython-312.pyc +0 -0
  1563. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_impl.py +410 -0
  1564. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
  1565. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/__init__.cpython-312.pyc +0 -0
  1566. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/__pycache__/_in_process.cpython-312.pyc +0 -0
  1567. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
  1568. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/pyproject_hooks/py.typed +0 -0
  1569. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/LICENSE +175 -0
  1570. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__init__.py +179 -0
  1571. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__init__.cpython-312.pyc +0 -0
  1572. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/__version__.cpython-312.pyc +0 -0
  1573. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/_internal_utils.cpython-312.pyc +0 -0
  1574. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/adapters.cpython-312.pyc +0 -0
  1575. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/api.cpython-312.pyc +0 -0
  1576. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/auth.cpython-312.pyc +0 -0
  1577. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/certs.cpython-312.pyc +0 -0
  1578. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/compat.cpython-312.pyc +0 -0
  1579. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/cookies.cpython-312.pyc +0 -0
  1580. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/exceptions.cpython-312.pyc +0 -0
  1581. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/help.cpython-312.pyc +0 -0
  1582. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/hooks.cpython-312.pyc +0 -0
  1583. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/models.cpython-312.pyc +0 -0
  1584. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/packages.cpython-312.pyc +0 -0
  1585. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/sessions.cpython-312.pyc +0 -0
  1586. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/status_codes.cpython-312.pyc +0 -0
  1587. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/structures.cpython-312.pyc +0 -0
  1588. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__pycache__/utils.cpython-312.pyc +0 -0
  1589. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/__version__.py +14 -0
  1590. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/_internal_utils.py +50 -0
  1591. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/adapters.py +696 -0
  1592. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/api.py +157 -0
  1593. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/auth.py +314 -0
  1594. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/certs.py +17 -0
  1595. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/compat.py +90 -0
  1596. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/cookies.py +561 -0
  1597. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/exceptions.py +151 -0
  1598. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/help.py +127 -0
  1599. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/hooks.py +33 -0
  1600. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/models.py +1039 -0
  1601. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/packages.py +25 -0
  1602. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/sessions.py +831 -0
  1603. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/status_codes.py +128 -0
  1604. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/structures.py +99 -0
  1605. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/requests/utils.py +1086 -0
  1606. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/LICENSE +13 -0
  1607. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__init__.py +27 -0
  1608. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/__init__.cpython-312.pyc +0 -0
  1609. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/providers.cpython-312.pyc +0 -0
  1610. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/reporters.cpython-312.pyc +0 -0
  1611. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/__pycache__/structs.cpython-312.pyc +0 -0
  1612. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/providers.py +196 -0
  1613. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/py.typed +0 -0
  1614. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/reporters.py +55 -0
  1615. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
  1616. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/__init__.cpython-312.pyc +0 -0
  1617. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/abstract.cpython-312.pyc +0 -0
  1618. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/criterion.cpython-312.pyc +0 -0
  1619. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/exceptions.cpython-312.pyc +0 -0
  1620. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/__pycache__/resolution.cpython-312.pyc +0 -0
  1621. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
  1622. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
  1623. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
  1624. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
  1625. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/resolvelib/structs.py +209 -0
  1626. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__init__.py +177 -0
  1627. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__main__.py +245 -0
  1628. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__init__.cpython-312.pyc +0 -0
  1629. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/__main__.cpython-312.pyc +0 -0
  1630. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_cell_widths.cpython-312.pyc +0 -0
  1631. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_codes.cpython-312.pyc +0 -0
  1632. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_emoji_replace.cpython-312.pyc +0 -0
  1633. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_export_format.cpython-312.pyc +0 -0
  1634. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_extension.cpython-312.pyc +0 -0
  1635. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_fileno.cpython-312.pyc +0 -0
  1636. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_inspect.cpython-312.pyc +0 -0
  1637. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_log_render.cpython-312.pyc +0 -0
  1638. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_loop.cpython-312.pyc +0 -0
  1639. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_null_file.cpython-312.pyc +0 -0
  1640. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_palettes.cpython-312.pyc +0 -0
  1641. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_pick.cpython-312.pyc +0 -0
  1642. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_ratio.cpython-312.pyc +0 -0
  1643. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_spinners.cpython-312.pyc +0 -0
  1644. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_stack.cpython-312.pyc +0 -0
  1645. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_timer.cpython-312.pyc +0 -0
  1646. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_win32_console.cpython-312.pyc +0 -0
  1647. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows.cpython-312.pyc +0 -0
  1648. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_windows_renderer.cpython-312.pyc +0 -0
  1649. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/_wrap.cpython-312.pyc +0 -0
  1650. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/abc.cpython-312.pyc +0 -0
  1651. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/align.cpython-312.pyc +0 -0
  1652. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/ansi.cpython-312.pyc +0 -0
  1653. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/bar.cpython-312.pyc +0 -0
  1654. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/box.cpython-312.pyc +0 -0
  1655. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/cells.cpython-312.pyc +0 -0
  1656. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color.cpython-312.pyc +0 -0
  1657. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/color_triplet.cpython-312.pyc +0 -0
  1658. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/columns.cpython-312.pyc +0 -0
  1659. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/console.cpython-312.pyc +0 -0
  1660. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/constrain.cpython-312.pyc +0 -0
  1661. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/containers.cpython-312.pyc +0 -0
  1662. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/control.cpython-312.pyc +0 -0
  1663. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/default_styles.cpython-312.pyc +0 -0
  1664. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/diagnose.cpython-312.pyc +0 -0
  1665. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/emoji.cpython-312.pyc +0 -0
  1666. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/errors.cpython-312.pyc +0 -0
  1667. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/file_proxy.cpython-312.pyc +0 -0
  1668. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/filesize.cpython-312.pyc +0 -0
  1669. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/highlighter.cpython-312.pyc +0 -0
  1670. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/json.cpython-312.pyc +0 -0
  1671. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/jupyter.cpython-312.pyc +0 -0
  1672. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/layout.cpython-312.pyc +0 -0
  1673. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live.cpython-312.pyc +0 -0
  1674. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/live_render.cpython-312.pyc +0 -0
  1675. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/logging.cpython-312.pyc +0 -0
  1676. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/markup.cpython-312.pyc +0 -0
  1677. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/measure.cpython-312.pyc +0 -0
  1678. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/padding.cpython-312.pyc +0 -0
  1679. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pager.cpython-312.pyc +0 -0
  1680. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/palette.cpython-312.pyc +0 -0
  1681. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/panel.cpython-312.pyc +0 -0
  1682. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/pretty.cpython-312.pyc +0 -0
  1683. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress.cpython-312.pyc +0 -0
  1684. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/progress_bar.cpython-312.pyc +0 -0
  1685. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/prompt.cpython-312.pyc +0 -0
  1686. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/protocol.cpython-312.pyc +0 -0
  1687. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/region.cpython-312.pyc +0 -0
  1688. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/repr.cpython-312.pyc +0 -0
  1689. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/rule.cpython-312.pyc +0 -0
  1690. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/scope.cpython-312.pyc +0 -0
  1691. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/screen.cpython-312.pyc +0 -0
  1692. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/segment.cpython-312.pyc +0 -0
  1693. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/spinner.cpython-312.pyc +0 -0
  1694. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/status.cpython-312.pyc +0 -0
  1695. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/style.cpython-312.pyc +0 -0
  1696. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/styled.cpython-312.pyc +0 -0
  1697. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/syntax.cpython-312.pyc +0 -0
  1698. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/table.cpython-312.pyc +0 -0
  1699. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/terminal_theme.cpython-312.pyc +0 -0
  1700. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/text.cpython-312.pyc +0 -0
  1701. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/theme.cpython-312.pyc +0 -0
  1702. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/themes.cpython-312.pyc +0 -0
  1703. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/traceback.cpython-312.pyc +0 -0
  1704. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/__pycache__/tree.cpython-312.pyc +0 -0
  1705. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_cell_widths.py +454 -0
  1706. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_codes.py +3610 -0
  1707. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_emoji_replace.py +32 -0
  1708. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_export_format.py +76 -0
  1709. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_extension.py +10 -0
  1710. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_fileno.py +24 -0
  1711. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_inspect.py +268 -0
  1712. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_log_render.py +94 -0
  1713. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_loop.py +43 -0
  1714. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_null_file.py +69 -0
  1715. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_palettes.py +309 -0
  1716. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_pick.py +17 -0
  1717. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_ratio.py +153 -0
  1718. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_spinners.py +482 -0
  1719. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_stack.py +16 -0
  1720. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_timer.py +19 -0
  1721. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_win32_console.py +661 -0
  1722. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows.py +71 -0
  1723. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_windows_renderer.py +56 -0
  1724. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/_wrap.py +93 -0
  1725. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/abc.py +33 -0
  1726. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/align.py +306 -0
  1727. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/ansi.py +241 -0
  1728. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/bar.py +93 -0
  1729. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/box.py +474 -0
  1730. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/cells.py +174 -0
  1731. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color.py +621 -0
  1732. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/color_triplet.py +38 -0
  1733. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/columns.py +187 -0
  1734. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/console.py +2680 -0
  1735. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/constrain.py +37 -0
  1736. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/containers.py +167 -0
  1737. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/control.py +219 -0
  1738. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/default_styles.py +193 -0
  1739. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/diagnose.py +39 -0
  1740. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/emoji.py +91 -0
  1741. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/errors.py +34 -0
  1742. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/file_proxy.py +57 -0
  1743. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/filesize.py +88 -0
  1744. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/highlighter.py +232 -0
  1745. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/json.py +139 -0
  1746. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/jupyter.py +101 -0
  1747. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/layout.py +442 -0
  1748. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live.py +400 -0
  1749. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/live_render.py +106 -0
  1750. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/logging.py +297 -0
  1751. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/markup.py +251 -0
  1752. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/measure.py +151 -0
  1753. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/padding.py +141 -0
  1754. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pager.py +34 -0
  1755. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/palette.py +100 -0
  1756. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/panel.py +317 -0
  1757. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/pretty.py +1016 -0
  1758. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress.py +1715 -0
  1759. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/progress_bar.py +223 -0
  1760. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/prompt.py +400 -0
  1761. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/protocol.py +42 -0
  1762. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/py.typed +0 -0
  1763. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/region.py +10 -0
  1764. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/repr.py +149 -0
  1765. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/rule.py +130 -0
  1766. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/scope.py +86 -0
  1767. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/screen.py +54 -0
  1768. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/segment.py +752 -0
  1769. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/spinner.py +132 -0
  1770. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/status.py +131 -0
  1771. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/style.py +792 -0
  1772. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/styled.py +42 -0
  1773. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/syntax.py +985 -0
  1774. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/table.py +1006 -0
  1775. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/terminal_theme.py +153 -0
  1776. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/text.py +1361 -0
  1777. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/theme.py +115 -0
  1778. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/themes.py +5 -0
  1779. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/traceback.py +899 -0
  1780. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/rich/tree.py +257 -0
  1781. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/LICENSE +21 -0
  1782. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__init__.py +8 -0
  1783. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  1784. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  1785. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  1786. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  1787. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_parser.py +777 -0
  1788. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_re.py +115 -0
  1789. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/_types.py +10 -0
  1790. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli/py.typed +1 -0
  1791. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/LICENSE +21 -0
  1792. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__init__.py +4 -0
  1793. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/__init__.cpython-312.pyc +0 -0
  1794. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/__pycache__/_writer.cpython-312.pyc +0 -0
  1795. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/_writer.py +229 -0
  1796. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/tomli_w/py.typed +1 -0
  1797. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/LICENSE +21 -0
  1798. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__init__.py +36 -0
  1799. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/__init__.cpython-312.pyc +0 -0
  1800. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_api.cpython-312.pyc +0 -0
  1801. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_macos.cpython-312.pyc +0 -0
  1802. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_openssl.cpython-312.pyc +0 -0
  1803. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_ssl_constants.cpython-312.pyc +0 -0
  1804. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/__pycache__/_windows.cpython-312.pyc +0 -0
  1805. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_api.py +343 -0
  1806. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_macos.py +573 -0
  1807. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_openssl.py +70 -0
  1808. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_ssl_constants.py +31 -0
  1809. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/_windows.py +569 -0
  1810. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/truststore/py.typed +0 -0
  1811. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/LICENSE.txt +21 -0
  1812. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__init__.py +102 -0
  1813. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/__init__.cpython-312.pyc +0 -0
  1814. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_collections.cpython-312.pyc +0 -0
  1815. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/_version.cpython-312.pyc +0 -0
  1816. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connection.cpython-312.pyc +0 -0
  1817. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/connectionpool.cpython-312.pyc +0 -0
  1818. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/exceptions.cpython-312.pyc +0 -0
  1819. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/fields.cpython-312.pyc +0 -0
  1820. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/filepost.cpython-312.pyc +0 -0
  1821. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/poolmanager.cpython-312.pyc +0 -0
  1822. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/request.cpython-312.pyc +0 -0
  1823. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/__pycache__/response.cpython-312.pyc +0 -0
  1824. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_collections.py +355 -0
  1825. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/_version.py +2 -0
  1826. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connection.py +572 -0
  1827. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/connectionpool.py +1140 -0
  1828. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  1829. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/__init__.cpython-312.pyc +0 -0
  1830. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/_appengine_environ.cpython-312.pyc +0 -0
  1831. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/appengine.cpython-312.pyc +0 -0
  1832. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/ntlmpool.cpython-312.pyc +0 -0
  1833. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/pyopenssl.cpython-312.pyc +0 -0
  1834. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/securetransport.cpython-312.pyc +0 -0
  1835. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/__pycache__/socks.cpython-312.pyc +0 -0
  1836. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
  1837. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  1838. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/__init__.cpython-312.pyc +0 -0
  1839. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/bindings.cpython-312.pyc +0 -0
  1840. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/__pycache__/low_level.cpython-312.pyc +0 -0
  1841. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
  1842. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
  1843. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/appengine.py +314 -0
  1844. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
  1845. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
  1846. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
  1847. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/contrib/socks.py +216 -0
  1848. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/exceptions.py +323 -0
  1849. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/fields.py +274 -0
  1850. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/filepost.py +98 -0
  1851. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__init__.py +0 -0
  1852. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/__init__.cpython-312.pyc +0 -0
  1853. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/__pycache__/six.cpython-312.pyc +0 -0
  1854. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  1855. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  1856. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/makefile.cpython-312.pyc +0 -0
  1857. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/__pycache__/weakref_finalize.cpython-312.pyc +0 -0
  1858. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
  1859. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
  1860. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/packages/six.py +1076 -0
  1861. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/poolmanager.py +540 -0
  1862. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/request.py +191 -0
  1863. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/response.py +879 -0
  1864. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__init__.py +49 -0
  1865. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/__init__.cpython-312.pyc +0 -0
  1866. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/connection.cpython-312.pyc +0 -0
  1867. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/proxy.cpython-312.pyc +0 -0
  1868. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/queue.cpython-312.pyc +0 -0
  1869. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/request.cpython-312.pyc +0 -0
  1870. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/response.cpython-312.pyc +0 -0
  1871. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/retry.cpython-312.pyc +0 -0
  1872. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_.cpython-312.pyc +0 -0
  1873. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssl_match_hostname.cpython-312.pyc +0 -0
  1874. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/ssltransport.cpython-312.pyc +0 -0
  1875. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/timeout.cpython-312.pyc +0 -0
  1876. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/url.cpython-312.pyc +0 -0
  1877. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/__pycache__/wait.cpython-312.pyc +0 -0
  1878. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/connection.py +149 -0
  1879. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/proxy.py +57 -0
  1880. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/queue.py +22 -0
  1881. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/request.py +137 -0
  1882. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/response.py +107 -0
  1883. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/retry.py +622 -0
  1884. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_.py +504 -0
  1885. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
  1886. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/ssltransport.py +221 -0
  1887. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/timeout.py +271 -0
  1888. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/url.py +435 -0
  1889. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/urllib3/util/wait.py +152 -0
  1890. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/_vendor/vendor.txt +19 -0
  1891. package/.local/python/lib/python3.12/site-packages/pipenv/patched/pip/py.typed +4 -0
  1892. package/.local/python/lib/python3.12/site-packages/pipenv/pep508checker.py +39 -0
  1893. package/.local/python/lib/python3.12/site-packages/pipenv/pipenv.1 +567 -0
  1894. package/.local/python/lib/python3.12/site-packages/pipenv/project.py +1687 -0
  1895. package/.local/python/lib/python3.12/site-packages/pipenv/resolver.py +512 -0
  1896. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__init__.py +0 -0
  1897. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/__init__.cpython-312.pyc +0 -0
  1898. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/audit.cpython-312.pyc +0 -0
  1899. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/check.cpython-312.pyc +0 -0
  1900. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clean.cpython-312.pyc +0 -0
  1901. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/clear.cpython-312.pyc +0 -0
  1902. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/graph.cpython-312.pyc +0 -0
  1903. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/install.cpython-312.pyc +0 -0
  1904. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/lock.cpython-312.pyc +0 -0
  1905. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/outdated.cpython-312.pyc +0 -0
  1906. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/requirements.cpython-312.pyc +0 -0
  1907. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/scan.cpython-312.pyc +0 -0
  1908. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/shell.cpython-312.pyc +0 -0
  1909. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/sync.cpython-312.pyc +0 -0
  1910. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/uninstall.cpython-312.pyc +0 -0
  1911. package/.local/python/lib/python3.12/site-packages/pipenv/routines/__pycache__/update.cpython-312.pyc +0 -0
  1912. package/.local/python/lib/python3.12/site-packages/pipenv/routines/audit.py +242 -0
  1913. package/.local/python/lib/python3.12/site-packages/pipenv/routines/check.py +444 -0
  1914. package/.local/python/lib/python3.12/site-packages/pipenv/routines/clean.py +77 -0
  1915. package/.local/python/lib/python3.12/site-packages/pipenv/routines/clear.py +37 -0
  1916. package/.local/python/lib/python3.12/site-packages/pipenv/routines/graph.py +111 -0
  1917. package/.local/python/lib/python3.12/site-packages/pipenv/routines/install.py +728 -0
  1918. package/.local/python/lib/python3.12/site-packages/pipenv/routines/lock.py +108 -0
  1919. package/.local/python/lib/python3.12/site-packages/pipenv/routines/outdated.py +92 -0
  1920. package/.local/python/lib/python3.12/site-packages/pipenv/routines/requirements.py +134 -0
  1921. package/.local/python/lib/python3.12/site-packages/pipenv/routines/scan.py +508 -0
  1922. package/.local/python/lib/python3.12/site-packages/pipenv/routines/shell.py +192 -0
  1923. package/.local/python/lib/python3.12/site-packages/pipenv/routines/sync.py +64 -0
  1924. package/.local/python/lib/python3.12/site-packages/pipenv/routines/uninstall.py +218 -0
  1925. package/.local/python/lib/python3.12/site-packages/pipenv/routines/update.py +676 -0
  1926. package/.local/python/lib/python3.12/site-packages/pipenv/shells.py +342 -0
  1927. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__init__.py +8 -0
  1928. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  1929. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/constants.cpython-312.pyc +0 -0
  1930. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/dependencies.cpython-312.pyc +0 -0
  1931. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/display.cpython-312.pyc +0 -0
  1932. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/environment.cpython-312.pyc +0 -0
  1933. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/exceptions.cpython-312.pyc +0 -0
  1934. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/fileutils.cpython-312.pyc +0 -0
  1935. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/funktools.cpython-312.pyc +0 -0
  1936. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/indexes.cpython-312.pyc +0 -0
  1937. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/internet.cpython-312.pyc +0 -0
  1938. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/locking.cpython-312.pyc +0 -0
  1939. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/markers.cpython-312.pyc +0 -0
  1940. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pip.cpython-312.pyc +0 -0
  1941. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pipfile.cpython-312.pyc +0 -0
  1942. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/processes.cpython-312.pyc +0 -0
  1943. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/project.cpython-312.pyc +0 -0
  1944. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/pylock.cpython-312.pyc +0 -0
  1945. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirements.cpython-312.pyc +0 -0
  1946. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/requirementslib.cpython-312.pyc +0 -0
  1947. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/resolver.cpython-312.pyc +0 -0
  1948. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/shell.cpython-312.pyc +0 -0
  1949. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/toml.cpython-312.pyc +0 -0
  1950. package/.local/python/lib/python3.12/site-packages/pipenv/utils/__pycache__/virtualenv.cpython-312.pyc +0 -0
  1951. package/.local/python/lib/python3.12/site-packages/pipenv/utils/constants.py +50 -0
  1952. package/.local/python/lib/python3.12/site-packages/pipenv/utils/dependencies.py +1413 -0
  1953. package/.local/python/lib/python3.12/site-packages/pipenv/utils/display.py +54 -0
  1954. package/.local/python/lib/python3.12/site-packages/pipenv/utils/environment.py +52 -0
  1955. package/.local/python/lib/python3.12/site-packages/pipenv/utils/exceptions.py +97 -0
  1956. package/.local/python/lib/python3.12/site-packages/pipenv/utils/fileutils.py +248 -0
  1957. package/.local/python/lib/python3.12/site-packages/pipenv/utils/funktools.py +452 -0
  1958. package/.local/python/lib/python3.12/site-packages/pipenv/utils/indexes.py +132 -0
  1959. package/.local/python/lib/python3.12/site-packages/pipenv/utils/internet.py +146 -0
  1960. package/.local/python/lib/python3.12/site-packages/pipenv/utils/locking.py +543 -0
  1961. package/.local/python/lib/python3.12/site-packages/pipenv/utils/markers.py +663 -0
  1962. package/.local/python/lib/python3.12/site-packages/pipenv/utils/pip.py +147 -0
  1963. package/.local/python/lib/python3.12/site-packages/pipenv/utils/pipfile.py +414 -0
  1964. package/.local/python/lib/python3.12/site-packages/pipenv/utils/processes.py +77 -0
  1965. package/.local/python/lib/python3.12/site-packages/pipenv/utils/project.py +121 -0
  1966. package/.local/python/lib/python3.12/site-packages/pipenv/utils/pylock.py +752 -0
  1967. package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirements.py +389 -0
  1968. package/.local/python/lib/python3.12/site-packages/pipenv/utils/requirementslib.py +732 -0
  1969. package/.local/python/lib/python3.12/site-packages/pipenv/utils/resolver.py +1172 -0
  1970. package/.local/python/lib/python3.12/site-packages/pipenv/utils/shell.py +558 -0
  1971. package/.local/python/lib/python3.12/site-packages/pipenv/utils/toml.py +140 -0
  1972. package/.local/python/lib/python3.12/site-packages/pipenv/utils/virtualenv.py +531 -0
  1973. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/Makefile +14 -0
  1974. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/README.md +28 -0
  1975. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__init__.py +0 -0
  1976. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/__pycache__/__init__.cpython-312.pyc +0 -0
  1977. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/LICENSE.txt +28 -0
  1978. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__init__.py +123 -0
  1979. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/__init__.cpython-312.pyc +0 -0
  1980. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_compat.cpython-312.pyc +0 -0
  1981. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_termui_impl.cpython-312.pyc +0 -0
  1982. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_textwrap.cpython-312.pyc +0 -0
  1983. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_utils.cpython-312.pyc +0 -0
  1984. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/_winconsole.cpython-312.pyc +0 -0
  1985. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/core.cpython-312.pyc +0 -0
  1986. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/decorators.cpython-312.pyc +0 -0
  1987. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/exceptions.cpython-312.pyc +0 -0
  1988. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/formatting.cpython-312.pyc +0 -0
  1989. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/globals.cpython-312.pyc +0 -0
  1990. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/parser.cpython-312.pyc +0 -0
  1991. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/shell_completion.cpython-312.pyc +0 -0
  1992. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/termui.cpython-312.pyc +0 -0
  1993. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/testing.cpython-312.pyc +0 -0
  1994. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/types.cpython-312.pyc +0 -0
  1995. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/__pycache__/utils.cpython-312.pyc +0 -0
  1996. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_compat.py +622 -0
  1997. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_termui_impl.py +852 -0
  1998. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_textwrap.py +51 -0
  1999. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_utils.py +36 -0
  2000. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/_winconsole.py +296 -0
  2001. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/core.py +3415 -0
  2002. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/decorators.py +551 -0
  2003. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/exceptions.py +308 -0
  2004. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/formatting.py +301 -0
  2005. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/globals.py +67 -0
  2006. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/parser.py +532 -0
  2007. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/py.typed +0 -0
  2008. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/shell_completion.py +667 -0
  2009. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/termui.py +883 -0
  2010. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/testing.py +577 -0
  2011. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/types.py +1209 -0
  2012. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click/utils.py +627 -0
  2013. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/LICENSE +19 -0
  2014. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__init__.py +66 -0
  2015. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/click_didyoumean/__pycache__/__init__.cpython-312.pyc +0 -0
  2016. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__init__.py +7 -0
  2017. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/__init__.cpython-312.pyc +0 -0
  2018. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansi.cpython-312.pyc +0 -0
  2019. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/ansitowin32.cpython-312.pyc +0 -0
  2020. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/initialise.cpython-312.pyc +0 -0
  2021. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/win32.cpython-312.pyc +0 -0
  2022. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/__pycache__/winterm.cpython-312.pyc +0 -0
  2023. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansi.py +102 -0
  2024. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/ansitowin32.py +277 -0
  2025. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/initialise.py +121 -0
  2026. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__init__.py +1 -0
  2027. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/__init__.cpython-312.pyc +0 -0
  2028. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansi_test.cpython-312.pyc +0 -0
  2029. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/ansitowin32_test.cpython-312.pyc +0 -0
  2030. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/initialise_test.cpython-312.pyc +0 -0
  2031. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/isatty_test.cpython-312.pyc +0 -0
  2032. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/utils.cpython-312.pyc +0 -0
  2033. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/__pycache__/winterm_test.cpython-312.pyc +0 -0
  2034. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansi_test.py +76 -0
  2035. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/ansitowin32_test.py +294 -0
  2036. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/initialise_test.py +189 -0
  2037. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/isatty_test.py +57 -0
  2038. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/utils.py +49 -0
  2039. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/tests/winterm_test.py +131 -0
  2040. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/win32.py +180 -0
  2041. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/colorama/winterm.py +195 -0
  2042. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__init__.py +51 -0
  2043. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/__init__.cpython-312.pyc +0 -0
  2044. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/ipython.cpython-312.pyc +0 -0
  2045. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/main.cpython-312.pyc +0 -0
  2046. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/parser.cpython-312.pyc +0 -0
  2047. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/variables.cpython-312.pyc +0 -0
  2048. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/__pycache__/version.cpython-312.pyc +0 -0
  2049. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/ipython.py +50 -0
  2050. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/main.py +435 -0
  2051. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/parser.py +182 -0
  2052. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/py.typed +1 -0
  2053. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/variables.py +86 -0
  2054. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/dotenv/version.py +1 -0
  2055. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__init__.py +1175 -0
  2056. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  2057. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
  2058. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
  2059. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
  2060. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
  2061. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
  2062. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
  2063. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
  2064. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
  2065. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
  2066. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_adapters.py +135 -0
  2067. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_collections.py +34 -0
  2068. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_compat.py +56 -0
  2069. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_functools.py +104 -0
  2070. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_itertools.py +171 -0
  2071. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_meta.py +71 -0
  2072. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_text.py +99 -0
  2073. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/_typing.py +15 -0
  2074. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__init__.py +0 -0
  2075. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2076. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
  2077. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2078. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py311.py +22 -0
  2079. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/compat/py39.py +42 -0
  2080. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/diagnose.py +21 -0
  2081. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/importlib_metadata/py.typed +0 -0
  2082. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE +3 -0
  2083. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.APACHE +177 -0
  2084. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/LICENSE.BSD +23 -0
  2085. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__init__.py +15 -0
  2086. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  2087. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  2088. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  2089. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  2090. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  2091. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  2092. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  2093. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  2094. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  2095. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  2096. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  2097. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  2098. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  2099. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  2100. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_elffile.py +109 -0
  2101. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_manylinux.py +262 -0
  2102. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_musllinux.py +85 -0
  2103. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_parser.py +353 -0
  2104. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_structures.py +61 -0
  2105. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/_tokenizer.py +195 -0
  2106. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__init__.py +145 -0
  2107. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  2108. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  2109. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/licenses/_spdx.py +759 -0
  2110. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/markers.py +362 -0
  2111. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/metadata.py +862 -0
  2112. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/py.typed +0 -0
  2113. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/requirements.py +91 -0
  2114. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/specifiers.py +1019 -0
  2115. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/tags.py +656 -0
  2116. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/utils.py +163 -0
  2117. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/packaging/version.py +582 -0
  2118. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/ANSI.py +351 -0
  2119. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/FSM.py +334 -0
  2120. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/LICENSE +20 -0
  2121. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__init__.py +91 -0
  2122. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/ANSI.cpython-312.pyc +0 -0
  2123. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/FSM.cpython-312.pyc +0 -0
  2124. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/__init__.cpython-312.pyc +0 -0
  2125. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async.cpython-312.pyc +0 -0
  2126. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_pre_await.cpython-312.pyc +0 -0
  2127. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/_async_w_await.cpython-312.pyc +0 -0
  2128. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/exceptions.cpython-312.pyc +0 -0
  2129. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/expect.cpython-312.pyc +0 -0
  2130. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/fdpexpect.cpython-312.pyc +0 -0
  2131. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/popen_spawn.cpython-312.pyc +0 -0
  2132. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pty_spawn.cpython-312.pyc +0 -0
  2133. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/pxssh.cpython-312.pyc +0 -0
  2134. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/replwrap.cpython-312.pyc +0 -0
  2135. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/run.cpython-312.pyc +0 -0
  2136. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/screen.cpython-312.pyc +0 -0
  2137. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/socket_pexpect.cpython-312.pyc +0 -0
  2138. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/spawnbase.cpython-312.pyc +0 -0
  2139. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/__pycache__/utils.cpython-312.pyc +0 -0
  2140. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async.py +28 -0
  2141. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_pre_await.py +111 -0
  2142. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/_async_w_await.py +118 -0
  2143. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/exceptions.py +35 -0
  2144. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/expect.py +371 -0
  2145. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/fdpexpect.py +152 -0
  2146. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/popen_spawn.py +188 -0
  2147. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pty_spawn.py +860 -0
  2148. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/pxssh.py +540 -0
  2149. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/replwrap.py +136 -0
  2150. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/run.py +157 -0
  2151. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/screen.py +431 -0
  2152. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/socket_pexpect.py +145 -0
  2153. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/spawnbase.py +536 -0
  2154. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pexpect/utils.py +187 -0
  2155. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__init__.py +0 -0
  2156. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__main__.py +92 -0
  2157. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__init__.cpython-312.pyc +0 -0
  2158. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/__main__.cpython-312.pyc +0 -0
  2159. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_cli.cpython-312.pyc +0 -0
  2160. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_detect_env.cpython-312.pyc +0 -0
  2161. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_discovery.cpython-312.pyc +0 -0
  2162. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_freeze.cpython-312.pyc +0 -0
  2163. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_validate.cpython-312.pyc +0 -0
  2164. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/_warning.cpython-312.pyc +0 -0
  2165. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/__pycache__/version.cpython-312.pyc +0 -0
  2166. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_cli.py +227 -0
  2167. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_detect_env.py +101 -0
  2168. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_discovery.py +154 -0
  2169. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_freeze.py +89 -0
  2170. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__init__.py +11 -0
  2171. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/__init__.cpython-312.pyc +0 -0
  2172. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/dag.cpython-312.pyc +0 -0
  2173. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/__pycache__/package.cpython-312.pyc +0 -0
  2174. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/dag.py +365 -0
  2175. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_models/package.py +251 -0
  2176. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__init__.py +41 -0
  2177. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/__init__.cpython-312.pyc +0 -0
  2178. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/freeze.cpython-312.pyc +0 -0
  2179. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/graphviz.cpython-312.pyc +0 -0
  2180. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json.cpython-312.pyc +0 -0
  2181. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/json_tree.cpython-312.pyc +0 -0
  2182. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/mermaid.cpython-312.pyc +0 -0
  2183. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/__pycache__/text.cpython-312.pyc +0 -0
  2184. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/freeze.py +43 -0
  2185. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/graphviz.py +107 -0
  2186. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json.py +32 -0
  2187. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/json_tree.py +60 -0
  2188. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/mermaid.py +113 -0
  2189. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_render/text.py +153 -0
  2190. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_validate.py +119 -0
  2191. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/_warning.py +78 -0
  2192. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/py.typed +0 -0
  2193. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pipdeptree/version.py +34 -0
  2194. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/LICENSE +13 -0
  2195. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__init__.py +9 -0
  2196. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/__init__.cpython-312.pyc +0 -0
  2197. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/lockfiles.cpython-312.pyc +0 -0
  2198. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/__pycache__/pipfiles.cpython-312.pyc +0 -0
  2199. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/lockfiles.py +177 -0
  2200. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__init__.py +26 -0
  2201. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/__init__.cpython-312.pyc +0 -0
  2202. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/base.cpython-312.pyc +0 -0
  2203. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/hashes.cpython-312.pyc +0 -0
  2204. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/packages.cpython-312.pyc +0 -0
  2205. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/scripts.cpython-312.pyc +0 -0
  2206. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sections.cpython-312.pyc +0 -0
  2207. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/__pycache__/sources.cpython-312.pyc +0 -0
  2208. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/base.py +130 -0
  2209. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/hashes.py +69 -0
  2210. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/packages.py +56 -0
  2211. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/scripts.py +71 -0
  2212. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sections.py +138 -0
  2213. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/models/sources.py +45 -0
  2214. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/plette/pipfiles.py +168 -0
  2215. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/LICENSE +16 -0
  2216. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__init__.py +4 -0
  2217. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/__init__.cpython-312.pyc +0 -0
  2218. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/_fork_pty.cpython-312.pyc +0 -0
  2219. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/ptyprocess.cpython-312.pyc +0 -0
  2220. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/__pycache__/util.cpython-312.pyc +0 -0
  2221. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/_fork_pty.py +78 -0
  2222. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/ptyprocess.py +842 -0
  2223. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ptyprocess/util.py +71 -0
  2224. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/python_dotenv.LICENSE +27 -0
  2225. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/LICENSE.txt +20 -0
  2226. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__init__.py +9 -0
  2227. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/__init__.cpython-312.pyc +0 -0
  2228. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/environment.cpython-312.pyc +0 -0
  2229. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/exceptions.cpython-312.pyc +0 -0
  2230. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/main.cpython-312.pyc +0 -0
  2231. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/__pycache__/pythonfinder.cpython-312.pyc +0 -0
  2232. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/environment.py +115 -0
  2233. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/exceptions.py +13 -0
  2234. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__init__.py +24 -0
  2235. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/__init__.cpython-312.pyc +0 -0
  2236. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/asdf_finder.cpython-312.pyc +0 -0
  2237. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/base_finder.cpython-312.pyc +0 -0
  2238. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/path_finder.cpython-312.pyc +0 -0
  2239. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/py_launcher_finder.cpython-312.pyc +0 -0
  2240. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/pyenv_finder.cpython-312.pyc +0 -0
  2241. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/system_finder.cpython-312.pyc +0 -0
  2242. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/__pycache__/windows_registry.cpython-312.pyc +0 -0
  2243. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/asdf_finder.py +72 -0
  2244. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/base_finder.py +188 -0
  2245. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/path_finder.py +226 -0
  2246. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/py_launcher_finder.py +226 -0
  2247. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/pyenv_finder.py +73 -0
  2248. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/system_finder.py +82 -0
  2249. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/finders/windows_registry.py +499 -0
  2250. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/main.py +15 -0
  2251. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__init__.py +5 -0
  2252. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/__init__.cpython-312.pyc +0 -0
  2253. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/__pycache__/python_info.cpython-312.pyc +0 -0
  2254. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/models/python_info.py +175 -0
  2255. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/pythonfinder.py +227 -0
  2256. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__init__.py +35 -0
  2257. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/__init__.cpython-312.pyc +0 -0
  2258. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/path_utils.cpython-312.pyc +0 -0
  2259. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/__pycache__/version_utils.cpython-312.pyc +0 -0
  2260. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/path_utils.py +287 -0
  2261. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/pythonfinder/utils/version_utils.py +233 -0
  2262. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__init__.py +0 -0
  2263. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/ruamel/__pycache__/__init__.cpython-312.pyc +0 -0
  2264. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/LICENSE +13 -0
  2265. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__init__.py +23 -0
  2266. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/__init__.cpython-312.pyc +0 -0
  2267. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/_core.cpython-312.pyc +0 -0
  2268. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/__pycache__/nt.cpython-312.pyc +0 -0
  2269. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/_core.py +11 -0
  2270. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/nt.py +163 -0
  2271. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__init__.py +112 -0
  2272. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/__init__.cpython-312.pyc +0 -0
  2273. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/_core.cpython-312.pyc +0 -0
  2274. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/proc.cpython-312.pyc +0 -0
  2275. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/__pycache__/ps.cpython-312.pyc +0 -0
  2276. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/_core.py +3 -0
  2277. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/proc.py +83 -0
  2278. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/shellingham/posix/ps.py +51 -0
  2279. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/LICENSE +20 -0
  2280. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__init__.py +59 -0
  2281. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/__init__.cpython-312.pyc +0 -0
  2282. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_compat.cpython-312.pyc +0 -0
  2283. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_types.cpython-312.pyc +0 -0
  2284. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/_utils.cpython-312.pyc +0 -0
  2285. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/api.cpython-312.pyc +0 -0
  2286. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/container.cpython-312.pyc +0 -0
  2287. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/exceptions.cpython-312.pyc +0 -0
  2288. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/items.cpython-312.pyc +0 -0
  2289. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/parser.cpython-312.pyc +0 -0
  2290. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/source.cpython-312.pyc +0 -0
  2291. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_char.cpython-312.pyc +0 -0
  2292. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_document.cpython-312.pyc +0 -0
  2293. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/__pycache__/toml_file.cpython-312.pyc +0 -0
  2294. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_compat.py +22 -0
  2295. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_types.py +82 -0
  2296. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/_utils.py +158 -0
  2297. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/api.py +310 -0
  2298. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/container.py +894 -0
  2299. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/exceptions.py +234 -0
  2300. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/items.py +1960 -0
  2301. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/parser.py +1141 -0
  2302. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/py.typed +0 -0
  2303. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/source.py +180 -0
  2304. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_char.py +52 -0
  2305. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_document.py +7 -0
  2306. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/tomlkit/toml_file.py +58 -0
  2307. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/vendor.txt +14 -0
  2308. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__init__.py +456 -0
  2309. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
  2310. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
  2311. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
  2312. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/_functools.py +20 -0
  2313. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__init__.py +0 -0
  2314. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2315. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
  2316. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
  2317. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
  2318. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/overlay.py +37 -0
  2319. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py310.py +13 -0
  2320. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/compat/py313.py +34 -0
  2321. package/.local/python/lib/python3.12/site-packages/pipenv/vendor/zipp/glob.py +116 -0
  2322. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/INSTALLER +1 -0
  2323. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/METADATA +434 -0
  2324. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/RECORD +1318 -0
  2325. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/REQUESTED +0 -0
  2326. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/WHEEL +5 -0
  2327. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/entry_points.txt +3 -0
  2328. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/LICENSE +21 -0
  2329. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/licenses/NOTICES +5 -0
  2330. package/.local/python/lib/python3.12/site-packages/pipenv-2026.0.3.dist-info/top_level.txt +2 -0
  2331. package/.local/python/lib/python3.12/site-packages/platformdirs/__init__.py +857 -0
  2332. package/.local/python/lib/python3.12/site-packages/platformdirs/__main__.py +61 -0
  2333. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  2334. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  2335. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/_xdg.cpython-312.pyc +0 -0
  2336. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  2337. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  2338. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  2339. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  2340. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  2341. package/.local/python/lib/python3.12/site-packages/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  2342. package/.local/python/lib/python3.12/site-packages/platformdirs/_xdg.py +143 -0
  2343. package/.local/python/lib/python3.12/site-packages/platformdirs/android.py +273 -0
  2344. package/.local/python/lib/python3.12/site-packages/platformdirs/api.py +394 -0
  2345. package/.local/python/lib/python3.12/site-packages/platformdirs/macos.py +187 -0
  2346. package/.local/python/lib/python3.12/site-packages/platformdirs/py.typed +0 -0
  2347. package/.local/python/lib/python3.12/site-packages/platformdirs/unix.py +293 -0
  2348. package/.local/python/lib/python3.12/site-packages/platformdirs/version.py +34 -0
  2349. package/.local/python/lib/python3.12/site-packages/platformdirs/windows.py +369 -0
  2350. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/INSTALLER +1 -0
  2351. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/METADATA +100 -0
  2352. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/RECORD +24 -0
  2353. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/WHEEL +4 -0
  2354. package/.local/python/lib/python3.12/site-packages/platformdirs-4.9.2.dist-info/licenses/LICENSE +21 -0
  2355. package/.local/python/lib/python3.12/site-packages/python_discovery/__init__.py +26 -0
  2356. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/__init__.cpython-312.pyc +0 -0
  2357. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cache.cpython-312.pyc +0 -0
  2358. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_cached_py_info.cpython-312.pyc +0 -0
  2359. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_compat.cpython-312.pyc +0 -0
  2360. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_discovery.cpython-312.pyc +0 -0
  2361. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_info.cpython-312.pyc +0 -0
  2362. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_py_spec.cpython-312.pyc +0 -0
  2363. package/.local/python/lib/python3.12/site-packages/python_discovery/__pycache__/_specifier.cpython-312.pyc +0 -0
  2364. package/.local/python/lib/python3.12/site-packages/python_discovery/_cache.py +185 -0
  2365. package/.local/python/lib/python3.12/site-packages/python_discovery/_cached_py_info.py +259 -0
  2366. package/.local/python/lib/python3.12/site-packages/python_discovery/_compat.py +29 -0
  2367. package/.local/python/lib/python3.12/site-packages/python_discovery/_discovery.py +335 -0
  2368. package/.local/python/lib/python3.12/site-packages/python_discovery/_py_info.py +787 -0
  2369. package/.local/python/lib/python3.12/site-packages/python_discovery/_py_spec.py +262 -0
  2370. package/.local/python/lib/python3.12/site-packages/python_discovery/_specifier.py +311 -0
  2371. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__init__.py +13 -0
  2372. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/__init__.cpython-312.pyc +0 -0
  2373. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_pep514.cpython-312.pyc +0 -0
  2374. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/__pycache__/_propose.cpython-312.pyc +0 -0
  2375. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_pep514.py +222 -0
  2376. package/.local/python/lib/python3.12/site-packages/python_discovery/_windows/_propose.py +53 -0
  2377. package/.local/python/lib/python3.12/site-packages/python_discovery/py.typed +0 -0
  2378. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/INSTALLER +1 -0
  2379. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/METADATA +71 -0
  2380. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/RECORD +28 -0
  2381. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/WHEEL +4 -0
  2382. package/.local/python/lib/python3.12/site-packages/python_discovery-1.1.0.dist-info/licenses/LICENSE +18 -0
  2383. package/.local/python/lib/python3.12/site-packages/setuptools/__init__.py +256 -0
  2384. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/__init__.cpython-312.pyc +0 -0
  2385. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_core_metadata.cpython-312.pyc +0 -0
  2386. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_discovery.cpython-312.pyc +0 -0
  2387. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_entry_points.cpython-312.pyc +0 -0
  2388. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_imp.cpython-312.pyc +0 -0
  2389. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_importlib.cpython-312.pyc +0 -0
  2390. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_itertools.cpython-312.pyc +0 -0
  2391. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_normalization.cpython-312.pyc +0 -0
  2392. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_path.cpython-312.pyc +0 -0
  2393. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_reqs.cpython-312.pyc +0 -0
  2394. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_scripts.cpython-312.pyc +0 -0
  2395. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_shutil.cpython-312.pyc +0 -0
  2396. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/_static.cpython-312.pyc +0 -0
  2397. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/archive_util.cpython-312.pyc +0 -0
  2398. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/build_meta.cpython-312.pyc +0 -0
  2399. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/depends.cpython-312.pyc +0 -0
  2400. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/discovery.cpython-312.pyc +0 -0
  2401. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/dist.cpython-312.pyc +0 -0
  2402. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/errors.cpython-312.pyc +0 -0
  2403. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/extension.cpython-312.pyc +0 -0
  2404. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/glob.cpython-312.pyc +0 -0
  2405. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/installer.cpython-312.pyc +0 -0
  2406. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/launch.cpython-312.pyc +0 -0
  2407. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/logging.cpython-312.pyc +0 -0
  2408. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/modified.cpython-312.pyc +0 -0
  2409. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/monkey.cpython-312.pyc +0 -0
  2410. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/msvc.cpython-312.pyc +0 -0
  2411. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/namespaces.cpython-312.pyc +0 -0
  2412. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/unicode_utils.cpython-312.pyc +0 -0
  2413. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/version.cpython-312.pyc +0 -0
  2414. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/warnings.cpython-312.pyc +0 -0
  2415. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/wheel.cpython-312.pyc +0 -0
  2416. package/.local/python/lib/python3.12/site-packages/setuptools/__pycache__/windows_support.cpython-312.pyc +0 -0
  2417. package/.local/python/lib/python3.12/site-packages/setuptools/_core_metadata.py +337 -0
  2418. package/.local/python/lib/python3.12/site-packages/setuptools/_discovery.py +33 -0
  2419. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__init__.py +14 -0
  2420. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/__init__.cpython-312.pyc +0 -0
  2421. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_log.cpython-312.pyc +0 -0
  2422. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_macos_compat.cpython-312.pyc +0 -0
  2423. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_modified.cpython-312.pyc +0 -0
  2424. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/_msvccompiler.cpython-312.pyc +0 -0
  2425. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/archive_util.cpython-312.pyc +0 -0
  2426. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/ccompiler.cpython-312.pyc +0 -0
  2427. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cmd.cpython-312.pyc +0 -0
  2428. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/core.cpython-312.pyc +0 -0
  2429. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/cygwinccompiler.cpython-312.pyc +0 -0
  2430. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/debug.cpython-312.pyc +0 -0
  2431. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dep_util.cpython-312.pyc +0 -0
  2432. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dir_util.cpython-312.pyc +0 -0
  2433. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/dist.cpython-312.pyc +0 -0
  2434. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/errors.cpython-312.pyc +0 -0
  2435. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/extension.cpython-312.pyc +0 -0
  2436. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/fancy_getopt.cpython-312.pyc +0 -0
  2437. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/file_util.cpython-312.pyc +0 -0
  2438. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/filelist.cpython-312.pyc +0 -0
  2439. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/log.cpython-312.pyc +0 -0
  2440. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/spawn.cpython-312.pyc +0 -0
  2441. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/sysconfig.cpython-312.pyc +0 -0
  2442. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/text_file.cpython-312.pyc +0 -0
  2443. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/unixccompiler.cpython-312.pyc +0 -0
  2444. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/util.cpython-312.pyc +0 -0
  2445. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/version.cpython-312.pyc +0 -0
  2446. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/versionpredicate.cpython-312.pyc +0 -0
  2447. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/__pycache__/zosccompiler.cpython-312.pyc +0 -0
  2448. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_log.py +3 -0
  2449. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
  2450. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_modified.py +95 -0
  2451. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/_msvccompiler.py +16 -0
  2452. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/archive_util.py +284 -0
  2453. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/ccompiler.py +26 -0
  2454. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cmd.py +535 -0
  2455. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__init__.py +23 -0
  2456. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/__init__.cpython-312.pyc +0 -0
  2457. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/_framework_compat.cpython-312.pyc +0 -0
  2458. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist.cpython-312.pyc +0 -0
  2459. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_dumb.cpython-312.pyc +0 -0
  2460. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
  2461. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build.cpython-312.pyc +0 -0
  2462. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_clib.cpython-312.pyc +0 -0
  2463. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_ext.cpython-312.pyc +0 -0
  2464. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_py.cpython-312.pyc +0 -0
  2465. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/build_scripts.cpython-312.pyc +0 -0
  2466. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/check.cpython-312.pyc +0 -0
  2467. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/clean.cpython-312.pyc +0 -0
  2468. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/config.cpython-312.pyc +0 -0
  2469. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install.cpython-312.pyc +0 -0
  2470. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_data.cpython-312.pyc +0 -0
  2471. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
  2472. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_headers.cpython-312.pyc +0 -0
  2473. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_lib.cpython-312.pyc +0 -0
  2474. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
  2475. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/__pycache__/sdist.cpython-312.pyc +0 -0
  2476. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/_framework_compat.py +54 -0
  2477. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist.py +167 -0
  2478. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_dumb.py +141 -0
  2479. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/bdist_rpm.py +597 -0
  2480. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build.py +156 -0
  2481. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_clib.py +199 -0
  2482. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_ext.py +811 -0
  2483. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_py.py +404 -0
  2484. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/build_scripts.py +150 -0
  2485. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/check.py +152 -0
  2486. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/clean.py +76 -0
  2487. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/config.py +348 -0
  2488. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install.py +805 -0
  2489. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_data.py +94 -0
  2490. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_egg_info.py +90 -0
  2491. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_headers.py +46 -0
  2492. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_lib.py +236 -0
  2493. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/install_scripts.py +59 -0
  2494. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/command/sdist.py +521 -0
  2495. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__init__.py +18 -0
  2496. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2497. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/numpy.cpython-312.pyc +0 -0
  2498. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2499. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/numpy.py +2 -0
  2500. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compat/py39.py +66 -0
  2501. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/base.cpython-312.pyc +0 -0
  2502. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/cygwin.cpython-312.pyc +0 -0
  2503. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/errors.cpython-312.pyc +0 -0
  2504. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/msvc.cpython-312.pyc +0 -0
  2505. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/unix.cpython-312.pyc +0 -0
  2506. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/__pycache__/zos.cpython-312.pyc +0 -0
  2507. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/base.py +1386 -0
  2508. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/cygwin.py +340 -0
  2509. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/errors.py +24 -0
  2510. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/msvc.py +614 -0
  2511. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_base.cpython-312.pyc +0 -0
  2512. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_cygwin.cpython-312.pyc +0 -0
  2513. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_mingw.cpython-312.pyc +0 -0
  2514. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_msvc.cpython-312.pyc +0 -0
  2515. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/__pycache__/test_unix.cpython-312.pyc +0 -0
  2516. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_base.py +83 -0
  2517. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_cygwin.py +76 -0
  2518. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_mingw.py +48 -0
  2519. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_msvc.py +136 -0
  2520. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/tests/test_unix.py +413 -0
  2521. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/unix.py +422 -0
  2522. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/compilers/C/zos.py +230 -0
  2523. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/core.py +289 -0
  2524. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/cygwinccompiler.py +31 -0
  2525. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/debug.py +5 -0
  2526. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dep_util.py +14 -0
  2527. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dir_util.py +232 -0
  2528. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/dist.py +1384 -0
  2529. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/errors.py +108 -0
  2530. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/extension.py +258 -0
  2531. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/fancy_getopt.py +471 -0
  2532. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/file_util.py +228 -0
  2533. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/filelist.py +431 -0
  2534. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/log.py +56 -0
  2535. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/spawn.py +130 -0
  2536. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/sysconfig.py +598 -0
  2537. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__init__.py +42 -0
  2538. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/__init__.cpython-312.pyc +0 -0
  2539. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/support.cpython-312.pyc +0 -0
  2540. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
  2541. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist.cpython-312.pyc +0 -0
  2542. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_dumb.cpython-312.pyc +0 -0
  2543. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_bdist_rpm.cpython-312.pyc +0 -0
  2544. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build.cpython-312.pyc +0 -0
  2545. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
  2546. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
  2547. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
  2548. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_build_scripts.cpython-312.pyc +0 -0
  2549. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_check.cpython-312.pyc +0 -0
  2550. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_clean.cpython-312.pyc +0 -0
  2551. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_cmd.cpython-312.pyc +0 -0
  2552. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_config_cmd.cpython-312.pyc +0 -0
  2553. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_core.cpython-312.pyc +0 -0
  2554. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dir_util.cpython-312.pyc +0 -0
  2555. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
  2556. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_extension.cpython-312.pyc +0 -0
  2557. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_file_util.cpython-312.pyc +0 -0
  2558. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_filelist.cpython-312.pyc +0 -0
  2559. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install.cpython-312.pyc +0 -0
  2560. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_data.cpython-312.pyc +0 -0
  2561. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_headers.cpython-312.pyc +0 -0
  2562. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_lib.cpython-312.pyc +0 -0
  2563. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
  2564. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_log.cpython-312.pyc +0 -0
  2565. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_modified.cpython-312.pyc +0 -0
  2566. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
  2567. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_spawn.cpython-312.pyc +0 -0
  2568. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_sysconfig.cpython-312.pyc +0 -0
  2569. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_text_file.cpython-312.pyc +0 -0
  2570. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_util.cpython-312.pyc +0 -0
  2571. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_version.cpython-312.pyc +0 -0
  2572. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/test_versionpredicate.cpython-312.pyc +0 -0
  2573. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/__pycache__/unix_compat.cpython-312.pyc +0 -0
  2574. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__init__.py +0 -0
  2575. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2576. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2577. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/compat/py39.py +40 -0
  2578. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/support.py +134 -0
  2579. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_archive_util.py +342 -0
  2580. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist.py +47 -0
  2581. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_dumb.py +78 -0
  2582. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_bdist_rpm.py +127 -0
  2583. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build.py +49 -0
  2584. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_clib.py +134 -0
  2585. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_ext.py +628 -0
  2586. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_py.py +196 -0
  2587. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_build_scripts.py +96 -0
  2588. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_check.py +194 -0
  2589. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_clean.py +45 -0
  2590. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_cmd.py +107 -0
  2591. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_config_cmd.py +87 -0
  2592. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_core.py +130 -0
  2593. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dir_util.py +139 -0
  2594. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_dist.py +552 -0
  2595. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_extension.py +117 -0
  2596. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_file_util.py +95 -0
  2597. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_filelist.py +336 -0
  2598. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install.py +245 -0
  2599. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_data.py +74 -0
  2600. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_headers.py +33 -0
  2601. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_lib.py +110 -0
  2602. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_install_scripts.py +52 -0
  2603. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_log.py +12 -0
  2604. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_modified.py +126 -0
  2605. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sdist.py +470 -0
  2606. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_spawn.py +141 -0
  2607. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_sysconfig.py +319 -0
  2608. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_text_file.py +127 -0
  2609. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_util.py +243 -0
  2610. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_version.py +80 -0
  2611. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/test_versionpredicate.py +0 -0
  2612. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/tests/unix_compat.py +17 -0
  2613. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/text_file.py +286 -0
  2614. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/unixccompiler.py +9 -0
  2615. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/util.py +506 -0
  2616. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/version.py +348 -0
  2617. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
  2618. package/.local/python/lib/python3.12/site-packages/setuptools/_distutils/zosccompiler.py +3 -0
  2619. package/.local/python/lib/python3.12/site-packages/setuptools/_entry_points.py +94 -0
  2620. package/.local/python/lib/python3.12/site-packages/setuptools/_imp.py +87 -0
  2621. package/.local/python/lib/python3.12/site-packages/setuptools/_importlib.py +9 -0
  2622. package/.local/python/lib/python3.12/site-packages/setuptools/_itertools.py +23 -0
  2623. package/.local/python/lib/python3.12/site-packages/setuptools/_normalization.py +180 -0
  2624. package/.local/python/lib/python3.12/site-packages/setuptools/_path.py +93 -0
  2625. package/.local/python/lib/python3.12/site-packages/setuptools/_reqs.py +42 -0
  2626. package/.local/python/lib/python3.12/site-packages/setuptools/_scripts.py +361 -0
  2627. package/.local/python/lib/python3.12/site-packages/setuptools/_shutil.py +59 -0
  2628. package/.local/python/lib/python3.12/site-packages/setuptools/_static.py +188 -0
  2629. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/.lock +0 -0
  2630. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__init__.py +27 -0
  2631. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/__init__.cpython-312.pyc +0 -0
  2632. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoasync.cpython-312.pyc +0 -0
  2633. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autocommand.cpython-312.pyc +0 -0
  2634. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/automain.cpython-312.pyc +0 -0
  2635. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/autoparse.cpython-312.pyc +0 -0
  2636. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/__pycache__/errors.cpython-312.pyc +0 -0
  2637. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoasync.py +142 -0
  2638. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autocommand.py +70 -0
  2639. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/automain.py +59 -0
  2640. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/autoparse.py +333 -0
  2641. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand/errors.py +23 -0
  2642. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/INSTALLER +1 -0
  2643. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/LICENSE +166 -0
  2644. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/METADATA +420 -0
  2645. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/RECORD +13 -0
  2646. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/REQUESTED +0 -0
  2647. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/WHEEL +5 -0
  2648. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/autocommand-2.2.2.dist-info/top_level.txt +1 -0
  2649. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__init__.py +1 -0
  2650. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/__pycache__/__init__.cpython-312.pyc +0 -0
  2651. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__init__.py +2937 -0
  2652. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__main__.py +5 -0
  2653. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__init__.cpython-312.pyc +0 -0
  2654. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/__pycache__/__main__.cpython-312.pyc +0 -0
  2655. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__init__.py +0 -0
  2656. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2657. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/__pycache__/py38.cpython-312.pyc +0 -0
  2658. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports/tarfile/compat/py38.py +24 -0
  2659. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/INSTALLER +1 -0
  2660. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/LICENSE +17 -0
  2661. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/METADATA +46 -0
  2662. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/RECORD +12 -0
  2663. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/REQUESTED +0 -0
  2664. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/WHEEL +5 -0
  2665. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/backports.tarfile-1.2.0.dist-info/top_level.txt +1 -0
  2666. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +1191 -0
  2667. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/__init__.cpython-312.pyc +0 -0
  2668. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_adapters.cpython-312.pyc +0 -0
  2669. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_collections.cpython-312.pyc +0 -0
  2670. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_compat.cpython-312.pyc +0 -0
  2671. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_functools.cpython-312.pyc +0 -0
  2672. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_itertools.cpython-312.pyc +0 -0
  2673. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_meta.cpython-312.pyc +0 -0
  2674. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_text.cpython-312.pyc +0 -0
  2675. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/_typing.cpython-312.pyc +0 -0
  2676. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/__pycache__/diagnose.cpython-312.pyc +0 -0
  2677. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +136 -0
  2678. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +34 -0
  2679. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +56 -0
  2680. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +135 -0
  2681. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +171 -0
  2682. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +71 -0
  2683. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
  2684. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/_typing.py +15 -0
  2685. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__init__.py +0 -0
  2686. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2687. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py311.cpython-312.pyc +0 -0
  2688. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2689. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py311.py +22 -0
  2690. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/compat/py39.py +42 -0
  2691. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/diagnose.py +21 -0
  2692. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata/py.typed +0 -0
  2693. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/INSTALLER +1 -0
  2694. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/METADATA +133 -0
  2695. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/RECORD +21 -0
  2696. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/REQUESTED +0 -0
  2697. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/WHEEL +5 -0
  2698. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/licenses/LICENSE +73 -0
  2699. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/importlib_metadata-8.7.1.dist-info/top_level.txt +1 -0
  2700. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__init__.py +367 -0
  2701. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/__pycache__/__init__.cpython-312.pyc +0 -0
  2702. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/context/py.typed +0 -0
  2703. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.py +722 -0
  2704. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__init__.pyi +123 -0
  2705. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/__pycache__/__init__.cpython-312.pyc +0 -0
  2706. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/functools/py.typed +0 -0
  2707. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/Lorem ipsum.txt +2 -0
  2708. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__init__.py +647 -0
  2709. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/__init__.cpython-312.pyc +0 -0
  2710. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/layouts.cpython-312.pyc +0 -0
  2711. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/show-newlines.cpython-312.pyc +0 -0
  2712. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/strip-prefix.cpython-312.pyc +0 -0
  2713. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-dvorak.cpython-312.pyc +0 -0
  2714. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/__pycache__/to-qwerty.cpython-312.pyc +0 -0
  2715. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/layouts.py +25 -0
  2716. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/show-newlines.py +32 -0
  2717. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/strip-prefix.py +21 -0
  2718. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-dvorak.py +5 -0
  2719. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco/text/to-qwerty.py +5 -0
  2720. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/INSTALLER +1 -0
  2721. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/LICENSE +17 -0
  2722. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/METADATA +96 -0
  2723. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/RECORD +14 -0
  2724. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/REQUESTED +0 -0
  2725. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/WHEEL +5 -0
  2726. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco.text-4.0.0.dist-info/top_level.txt +1 -0
  2727. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/INSTALLER +1 -0
  2728. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/METADATA +82 -0
  2729. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/RECORD +9 -0
  2730. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/REQUESTED +0 -0
  2731. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/WHEEL +5 -0
  2732. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/licenses/LICENSE +18 -0
  2733. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_context-6.1.0.dist-info/top_level.txt +1 -0
  2734. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/INSTALLER +1 -0
  2735. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/METADATA +69 -0
  2736. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/RECORD +10 -0
  2737. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/REQUESTED +0 -0
  2738. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/WHEEL +5 -0
  2739. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/licenses/LICENSE +18 -0
  2740. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/jaraco_functools-4.4.0.dist-info/top_level.txt +1 -0
  2741. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.py +6 -0
  2742. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__init__.pyi +2 -0
  2743. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/__init__.cpython-312.pyc +0 -0
  2744. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/more.cpython-312.pyc +0 -0
  2745. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/__pycache__/recipes.cpython-312.pyc +0 -0
  2746. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.py +5303 -0
  2747. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/more.pyi +949 -0
  2748. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/py.typed +0 -0
  2749. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.py +1471 -0
  2750. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools/recipes.pyi +205 -0
  2751. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/INSTALLER +1 -0
  2752. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/METADATA +283 -0
  2753. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/RECORD +13 -0
  2754. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/REQUESTED +0 -0
  2755. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/WHEEL +4 -0
  2756. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/more_itertools-10.8.0.dist-info/licenses/LICENSE +19 -0
  2757. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__init__.py +15 -0
  2758. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/__init__.cpython-312.pyc +0 -0
  2759. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_elffile.cpython-312.pyc +0 -0
  2760. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_manylinux.cpython-312.pyc +0 -0
  2761. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_musllinux.cpython-312.pyc +0 -0
  2762. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_parser.cpython-312.pyc +0 -0
  2763. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_structures.cpython-312.pyc +0 -0
  2764. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/_tokenizer.cpython-312.pyc +0 -0
  2765. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/markers.cpython-312.pyc +0 -0
  2766. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/metadata.cpython-312.pyc +0 -0
  2767. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/pylock.cpython-312.pyc +0 -0
  2768. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/requirements.cpython-312.pyc +0 -0
  2769. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/specifiers.cpython-312.pyc +0 -0
  2770. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/tags.cpython-312.pyc +0 -0
  2771. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/utils.cpython-312.pyc +0 -0
  2772. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/__pycache__/version.cpython-312.pyc +0 -0
  2773. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_elffile.py +108 -0
  2774. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_manylinux.py +262 -0
  2775. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_musllinux.py +85 -0
  2776. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_parser.py +365 -0
  2777. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_structures.py +69 -0
  2778. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/_tokenizer.py +193 -0
  2779. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__init__.py +147 -0
  2780. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/__init__.cpython-312.pyc +0 -0
  2781. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/__pycache__/_spdx.cpython-312.pyc +0 -0
  2782. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/licenses/_spdx.py +799 -0
  2783. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/markers.py +388 -0
  2784. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/metadata.py +978 -0
  2785. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/py.typed +0 -0
  2786. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/pylock.py +635 -0
  2787. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/requirements.py +86 -0
  2788. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/specifiers.py +1068 -0
  2789. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/tags.py +651 -0
  2790. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/utils.py +158 -0
  2791. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging/version.py +792 -0
  2792. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/INSTALLER +1 -0
  2793. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/METADATA +107 -0
  2794. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/RECORD +26 -0
  2795. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/REQUESTED +0 -0
  2796. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/WHEEL +4 -0
  2797. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE +3 -0
  2798. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
  2799. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
  2800. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__init__.py +631 -0
  2801. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__main__.py +55 -0
  2802. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__init__.cpython-312.pyc +0 -0
  2803. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/__main__.cpython-312.pyc +0 -0
  2804. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/android.cpython-312.pyc +0 -0
  2805. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/api.cpython-312.pyc +0 -0
  2806. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/macos.cpython-312.pyc +0 -0
  2807. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/unix.cpython-312.pyc +0 -0
  2808. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/version.cpython-312.pyc +0 -0
  2809. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/__pycache__/windows.cpython-312.pyc +0 -0
  2810. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/android.py +249 -0
  2811. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/api.py +299 -0
  2812. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/macos.py +146 -0
  2813. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/py.typed +0 -0
  2814. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/unix.py +272 -0
  2815. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/version.py +34 -0
  2816. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs/windows.py +272 -0
  2817. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/INSTALLER +1 -0
  2818. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/METADATA +350 -0
  2819. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/RECORD +15 -0
  2820. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/REQUESTED +0 -0
  2821. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/WHEEL +4 -0
  2822. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/platformdirs-4.4.0.dist-info/licenses/LICENSE +21 -0
  2823. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__init__.py +8 -0
  2824. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/__init__.cpython-312.pyc +0 -0
  2825. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_parser.cpython-312.pyc +0 -0
  2826. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_re.cpython-312.pyc +0 -0
  2827. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/__pycache__/_types.cpython-312.pyc +0 -0
  2828. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_parser.py +782 -0
  2829. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_re.py +119 -0
  2830. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
  2831. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli/py.typed +1 -0
  2832. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/INSTALLER +1 -0
  2833. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/METADATA +270 -0
  2834. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/RECORD +11 -0
  2835. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/REQUESTED +0 -0
  2836. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/WHEEL +4 -0
  2837. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/tomli-2.4.0.dist-info/licenses/LICENSE +21 -0
  2838. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__init__.py +3 -0
  2839. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__main__.py +25 -0
  2840. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
  2841. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
  2842. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
  2843. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
  2844. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
  2845. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
  2846. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
  2847. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
  2848. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
  2849. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_bdist_wheel.py +616 -0
  2850. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__init__.py +153 -0
  2851. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
  2852. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
  2853. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
  2854. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
  2855. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
  2856. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/convert.py +337 -0
  2857. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/pack.py +84 -0
  2858. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/tags.py +140 -0
  2859. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_commands/unpack.py +30 -0
  2860. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_metadata.py +184 -0
  2861. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/_setuptools_logging.py +26 -0
  2862. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/bdist_wheel.py +26 -0
  2863. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/macosx_libfile.py +486 -0
  2864. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/metadata.py +17 -0
  2865. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel/wheelfile.py +241 -0
  2866. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/INSTALLER +1 -0
  2867. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/METADATA +69 -0
  2868. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/RECORD +22 -0
  2869. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/REQUESTED +0 -0
  2870. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/WHEEL +4 -0
  2871. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/entry_points.txt +6 -0
  2872. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
  2873. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__init__.py +456 -0
  2874. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/__init__.cpython-312.pyc +0 -0
  2875. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/_functools.cpython-312.pyc +0 -0
  2876. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/__pycache__/glob.cpython-312.pyc +0 -0
  2877. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/_functools.py +20 -0
  2878. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__init__.py +0 -0
  2879. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2880. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/overlay.cpython-312.pyc +0 -0
  2881. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py310.cpython-312.pyc +0 -0
  2882. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/__pycache__/py313.cpython-312.pyc +0 -0
  2883. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/overlay.py +37 -0
  2884. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py310.py +13 -0
  2885. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/compat/py313.py +34 -0
  2886. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp/glob.py +116 -0
  2887. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/INSTALLER +1 -0
  2888. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/METADATA +106 -0
  2889. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/RECORD +14 -0
  2890. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/REQUESTED +0 -0
  2891. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/WHEEL +5 -0
  2892. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/licenses/LICENSE +18 -0
  2893. package/.local/python/lib/python3.12/site-packages/setuptools/_vendor/zipp-3.23.0.dist-info/top_level.txt +1 -0
  2894. package/.local/python/lib/python3.12/site-packages/setuptools/archive_util.py +219 -0
  2895. package/.local/python/lib/python3.12/site-packages/setuptools/build_meta.py +556 -0
  2896. package/.local/python/lib/python3.12/site-packages/setuptools/cli-32.exe +0 -0
  2897. package/.local/python/lib/python3.12/site-packages/setuptools/cli-64.exe +0 -0
  2898. package/.local/python/lib/python3.12/site-packages/setuptools/cli-arm64.exe +0 -0
  2899. package/.local/python/lib/python3.12/site-packages/setuptools/cli.exe +0 -0
  2900. package/.local/python/lib/python3.12/site-packages/setuptools/command/__init__.py +21 -0
  2901. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/__init__.cpython-312.pyc +0 -0
  2902. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/_requirestxt.cpython-312.pyc +0 -0
  2903. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/alias.cpython-312.pyc +0 -0
  2904. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_egg.cpython-312.pyc +0 -0
  2905. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_rpm.cpython-312.pyc +0 -0
  2906. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
  2907. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build.cpython-312.pyc +0 -0
  2908. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_clib.cpython-312.pyc +0 -0
  2909. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_ext.cpython-312.pyc +0 -0
  2910. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/build_py.cpython-312.pyc +0 -0
  2911. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/develop.cpython-312.pyc +0 -0
  2912. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/dist_info.cpython-312.pyc +0 -0
  2913. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/easy_install.cpython-312.pyc +0 -0
  2914. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/editable_wheel.cpython-312.pyc +0 -0
  2915. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/egg_info.cpython-312.pyc +0 -0
  2916. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install.cpython-312.pyc +0 -0
  2917. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_egg_info.cpython-312.pyc +0 -0
  2918. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_lib.cpython-312.pyc +0 -0
  2919. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/install_scripts.cpython-312.pyc +0 -0
  2920. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/rotate.cpython-312.pyc +0 -0
  2921. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/saveopts.cpython-312.pyc +0 -0
  2922. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/sdist.cpython-312.pyc +0 -0
  2923. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/setopt.cpython-312.pyc +0 -0
  2924. package/.local/python/lib/python3.12/site-packages/setuptools/command/__pycache__/test.cpython-312.pyc +0 -0
  2925. package/.local/python/lib/python3.12/site-packages/setuptools/command/_requirestxt.py +131 -0
  2926. package/.local/python/lib/python3.12/site-packages/setuptools/command/alias.py +77 -0
  2927. package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_egg.py +471 -0
  2928. package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_rpm.py +42 -0
  2929. package/.local/python/lib/python3.12/site-packages/setuptools/command/bdist_wheel.py +603 -0
  2930. package/.local/python/lib/python3.12/site-packages/setuptools/command/build.py +135 -0
  2931. package/.local/python/lib/python3.12/site-packages/setuptools/command/build_clib.py +103 -0
  2932. package/.local/python/lib/python3.12/site-packages/setuptools/command/build_ext.py +470 -0
  2933. package/.local/python/lib/python3.12/site-packages/setuptools/command/build_py.py +403 -0
  2934. package/.local/python/lib/python3.12/site-packages/setuptools/command/develop.py +58 -0
  2935. package/.local/python/lib/python3.12/site-packages/setuptools/command/dist_info.py +103 -0
  2936. package/.local/python/lib/python3.12/site-packages/setuptools/command/easy_install.py +30 -0
  2937. package/.local/python/lib/python3.12/site-packages/setuptools/command/editable_wheel.py +914 -0
  2938. package/.local/python/lib/python3.12/site-packages/setuptools/command/egg_info.py +716 -0
  2939. package/.local/python/lib/python3.12/site-packages/setuptools/command/install.py +131 -0
  2940. package/.local/python/lib/python3.12/site-packages/setuptools/command/install_egg_info.py +57 -0
  2941. package/.local/python/lib/python3.12/site-packages/setuptools/command/install_lib.py +137 -0
  2942. package/.local/python/lib/python3.12/site-packages/setuptools/command/install_scripts.py +66 -0
  2943. package/.local/python/lib/python3.12/site-packages/setuptools/command/launcher manifest.xml +15 -0
  2944. package/.local/python/lib/python3.12/site-packages/setuptools/command/rotate.py +64 -0
  2945. package/.local/python/lib/python3.12/site-packages/setuptools/command/saveopts.py +21 -0
  2946. package/.local/python/lib/python3.12/site-packages/setuptools/command/sdist.py +218 -0
  2947. package/.local/python/lib/python3.12/site-packages/setuptools/command/setopt.py +139 -0
  2948. package/.local/python/lib/python3.12/site-packages/setuptools/command/test.py +47 -0
  2949. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__init__.py +0 -0
  2950. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  2951. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py310.cpython-312.pyc +0 -0
  2952. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py311.cpython-312.pyc +0 -0
  2953. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py312.cpython-312.pyc +0 -0
  2954. package/.local/python/lib/python3.12/site-packages/setuptools/compat/__pycache__/py39.cpython-312.pyc +0 -0
  2955. package/.local/python/lib/python3.12/site-packages/setuptools/compat/py310.py +20 -0
  2956. package/.local/python/lib/python3.12/site-packages/setuptools/compat/py311.py +27 -0
  2957. package/.local/python/lib/python3.12/site-packages/setuptools/compat/py312.py +13 -0
  2958. package/.local/python/lib/python3.12/site-packages/setuptools/compat/py39.py +9 -0
  2959. package/.local/python/lib/python3.12/site-packages/setuptools/config/NOTICE +10 -0
  2960. package/.local/python/lib/python3.12/site-packages/setuptools/config/__init__.py +43 -0
  2961. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/__init__.cpython-312.pyc +0 -0
  2962. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/_apply_pyprojecttoml.cpython-312.pyc +0 -0
  2963. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/expand.cpython-312.pyc +0 -0
  2964. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/pyprojecttoml.cpython-312.pyc +0 -0
  2965. package/.local/python/lib/python3.12/site-packages/setuptools/config/__pycache__/setupcfg.cpython-312.pyc +0 -0
  2966. package/.local/python/lib/python3.12/site-packages/setuptools/config/_apply_pyprojecttoml.py +526 -0
  2967. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/NOTICE +438 -0
  2968. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
  2969. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/__init__.cpython-312.pyc +0 -0
  2970. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/error_reporting.cpython-312.pyc +0 -0
  2971. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/extra_validations.cpython-312.pyc +0 -0
  2972. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_exceptions.cpython-312.pyc +0 -0
  2973. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/fastjsonschema_validations.cpython-312.pyc +0 -0
  2974. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/__pycache__/formats.cpython-312.pyc +0 -0
  2975. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +336 -0
  2976. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +82 -0
  2977. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
  2978. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1412 -0
  2979. package/.local/python/lib/python3.12/site-packages/setuptools/config/_validate_pyproject/formats.py +402 -0
  2980. package/.local/python/lib/python3.12/site-packages/setuptools/config/distutils.schema.json +26 -0
  2981. package/.local/python/lib/python3.12/site-packages/setuptools/config/expand.py +452 -0
  2982. package/.local/python/lib/python3.12/site-packages/setuptools/config/pyprojecttoml.py +468 -0
  2983. package/.local/python/lib/python3.12/site-packages/setuptools/config/setupcfg.py +782 -0
  2984. package/.local/python/lib/python3.12/site-packages/setuptools/config/setuptools.schema.json +433 -0
  2985. package/.local/python/lib/python3.12/site-packages/setuptools/depends.py +185 -0
  2986. package/.local/python/lib/python3.12/site-packages/setuptools/discovery.py +614 -0
  2987. package/.local/python/lib/python3.12/site-packages/setuptools/dist.py +1124 -0
  2988. package/.local/python/lib/python3.12/site-packages/setuptools/errors.py +67 -0
  2989. package/.local/python/lib/python3.12/site-packages/setuptools/extension.py +179 -0
  2990. package/.local/python/lib/python3.12/site-packages/setuptools/glob.py +185 -0
  2991. package/.local/python/lib/python3.12/site-packages/setuptools/gui-32.exe +0 -0
  2992. package/.local/python/lib/python3.12/site-packages/setuptools/gui-64.exe +0 -0
  2993. package/.local/python/lib/python3.12/site-packages/setuptools/gui-arm64.exe +0 -0
  2994. package/.local/python/lib/python3.12/site-packages/setuptools/gui.exe +0 -0
  2995. package/.local/python/lib/python3.12/site-packages/setuptools/installer.py +155 -0
  2996. package/.local/python/lib/python3.12/site-packages/setuptools/launch.py +36 -0
  2997. package/.local/python/lib/python3.12/site-packages/setuptools/logging.py +40 -0
  2998. package/.local/python/lib/python3.12/site-packages/setuptools/modified.py +18 -0
  2999. package/.local/python/lib/python3.12/site-packages/setuptools/monkey.py +126 -0
  3000. package/.local/python/lib/python3.12/site-packages/setuptools/msvc.py +1557 -0
  3001. package/.local/python/lib/python3.12/site-packages/setuptools/namespaces.py +101 -0
  3002. package/.local/python/lib/python3.12/site-packages/setuptools/script (dev).tmpl +6 -0
  3003. package/.local/python/lib/python3.12/site-packages/setuptools/script.tmpl +3 -0
  3004. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__init__.py +13 -0
  3005. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/__init__.cpython-312.pyc +0 -0
  3006. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/contexts.cpython-312.pyc +0 -0
  3007. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/environment.cpython-312.pyc +0 -0
  3008. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/fixtures.cpython-312.pyc +0 -0
  3009. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/mod_with_constant.cpython-312.pyc +0 -0
  3010. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/namespaces.cpython-312.pyc +0 -0
  3011. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/script-with-bom.cpython-312.pyc +0 -0
  3012. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_archive_util.cpython-312.pyc +0 -0
  3013. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_deprecations.cpython-312.pyc +0 -0
  3014. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_egg.cpython-312.pyc +0 -0
  3015. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_bdist_wheel.cpython-312.pyc +0 -0
  3016. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build.cpython-312.pyc +0 -0
  3017. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_clib.cpython-312.pyc +0 -0
  3018. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_ext.cpython-312.pyc +0 -0
  3019. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_meta.cpython-312.pyc +0 -0
  3020. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_build_py.cpython-312.pyc +0 -0
  3021. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_config_discovery.cpython-312.pyc +0 -0
  3022. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_core_metadata.cpython-312.pyc +0 -0
  3023. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_depends.cpython-312.pyc +0 -0
  3024. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_develop.cpython-312.pyc +0 -0
  3025. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist.cpython-312.pyc +0 -0
  3026. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_dist_info.cpython-312.pyc +0 -0
  3027. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_distutils_adoption.cpython-312.pyc +0 -0
  3028. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_editable_install.cpython-312.pyc +0 -0
  3029. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_egg_info.cpython-312.pyc +0 -0
  3030. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_extern.cpython-312.pyc +0 -0
  3031. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_packages.cpython-312.pyc +0 -0
  3032. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_find_py_modules.cpython-312.pyc +0 -0
  3033. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_glob.cpython-312.pyc +0 -0
  3034. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_install_scripts.cpython-312.pyc +0 -0
  3035. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_logging.cpython-312.pyc +0 -0
  3036. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_manifest.cpython-312.pyc +0 -0
  3037. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_namespaces.cpython-312.pyc +0 -0
  3038. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_scripts.cpython-312.pyc +0 -0
  3039. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_sdist.cpython-312.pyc +0 -0
  3040. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setopt.cpython-312.pyc +0 -0
  3041. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_setuptools.cpython-312.pyc +0 -0
  3042. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_shutil_wrapper.cpython-312.pyc +0 -0
  3043. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_unicode_utils.cpython-312.pyc +0 -0
  3044. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_virtualenv.cpython-312.pyc +0 -0
  3045. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_warnings.cpython-312.pyc +0 -0
  3046. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_wheel.cpython-312.pyc +0 -0
  3047. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/test_windows_wrappers.cpython-312.pyc +0 -0
  3048. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/text.cpython-312.pyc +0 -0
  3049. package/.local/python/lib/python3.12/site-packages/setuptools/tests/__pycache__/textwrap.cpython-312.pyc +0 -0
  3050. package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__init__.py +0 -0
  3051. package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/__init__.cpython-312.pyc +0 -0
  3052. package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/__pycache__/py39.cpython-312.pyc +0 -0
  3053. package/.local/python/lib/python3.12/site-packages/setuptools/tests/compat/py39.py +3 -0
  3054. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__init__.py +0 -0
  3055. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/__init__.cpython-312.pyc +0 -0
  3056. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_apply_pyprojecttoml.cpython-312.pyc +0 -0
  3057. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_expand.cpython-312.pyc +0 -0
  3058. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml.cpython-312.pyc +0 -0
  3059. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_pyprojecttoml_dynamic_deps.cpython-312.pyc +0 -0
  3060. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/__pycache__/test_setupcfg.cpython-312.pyc +0 -0
  3061. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__init__.py +59 -0
  3062. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/__init__.cpython-312.pyc +0 -0
  3063. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/__pycache__/preload.cpython-312.pyc +0 -0
  3064. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/downloads/preload.py +18 -0
  3065. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/setupcfg_examples.txt +22 -0
  3066. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_apply_pyprojecttoml.py +774 -0
  3067. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_expand.py +247 -0
  3068. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml.py +398 -0
  3069. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_pyprojecttoml_dynamic_deps.py +111 -0
  3070. package/.local/python/lib/python3.12/site-packages/setuptools/tests/config/test_setupcfg.py +987 -0
  3071. package/.local/python/lib/python3.12/site-packages/setuptools/tests/contexts.py +131 -0
  3072. package/.local/python/lib/python3.12/site-packages/setuptools/tests/environment.py +95 -0
  3073. package/.local/python/lib/python3.12/site-packages/setuptools/tests/fixtures.py +406 -0
  3074. package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/external.html +3 -0
  3075. package/.local/python/lib/python3.12/site-packages/setuptools/tests/indexes/test_links_priority/simple/foobar/index.html +4 -0
  3076. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__init__.py +0 -0
  3077. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/__init__.cpython-312.pyc +0 -0
  3078. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/helpers.cpython-312.pyc +0 -0
  3079. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pbr.cpython-312.pyc +0 -0
  3080. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/__pycache__/test_pip_install_sdist.cpython-312.pyc +0 -0
  3081. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/helpers.py +80 -0
  3082. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pbr.py +20 -0
  3083. package/.local/python/lib/python3.12/site-packages/setuptools/tests/integration/test_pip_install_sdist.py +223 -0
  3084. package/.local/python/lib/python3.12/site-packages/setuptools/tests/mod_with_constant.py +1 -0
  3085. package/.local/python/lib/python3.12/site-packages/setuptools/tests/namespaces.py +90 -0
  3086. package/.local/python/lib/python3.12/site-packages/setuptools/tests/script-with-bom.py +1 -0
  3087. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_archive_util.py +36 -0
  3088. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_deprecations.py +28 -0
  3089. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_egg.py +73 -0
  3090. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_bdist_wheel.py +708 -0
  3091. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build.py +33 -0
  3092. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_clib.py +84 -0
  3093. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_ext.py +293 -0
  3094. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_meta.py +959 -0
  3095. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_build_py.py +480 -0
  3096. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_config_discovery.py +647 -0
  3097. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_core_metadata.py +550 -0
  3098. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_depends.py +15 -0
  3099. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_develop.py +113 -0
  3100. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist.py +280 -0
  3101. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_dist_info.py +147 -0
  3102. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_distutils_adoption.py +198 -0
  3103. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_editable_install.py +1261 -0
  3104. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_egg_info.py +1306 -0
  3105. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_extern.py +15 -0
  3106. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_packages.py +218 -0
  3107. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_find_py_modules.py +73 -0
  3108. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_glob.py +45 -0
  3109. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_install_scripts.py +89 -0
  3110. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_logging.py +76 -0
  3111. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_manifest.py +622 -0
  3112. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_namespaces.py +79 -0
  3113. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_scripts.py +12 -0
  3114. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_sdist.py +980 -0
  3115. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setopt.py +40 -0
  3116. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_setuptools.py +290 -0
  3117. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_shutil_wrapper.py +23 -0
  3118. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_unicode_utils.py +10 -0
  3119. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_virtualenv.py +113 -0
  3120. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_warnings.py +106 -0
  3121. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_wheel.py +690 -0
  3122. package/.local/python/lib/python3.12/site-packages/setuptools/tests/test_windows_wrappers.py +258 -0
  3123. package/.local/python/lib/python3.12/site-packages/setuptools/tests/text.py +4 -0
  3124. package/.local/python/lib/python3.12/site-packages/setuptools/tests/textwrap.py +6 -0
  3125. package/.local/python/lib/python3.12/site-packages/setuptools/unicode_utils.py +102 -0
  3126. package/.local/python/lib/python3.12/site-packages/setuptools/version.py +6 -0
  3127. package/.local/python/lib/python3.12/site-packages/setuptools/warnings.py +110 -0
  3128. package/.local/python/lib/python3.12/site-packages/setuptools/wheel.py +262 -0
  3129. package/.local/python/lib/python3.12/site-packages/setuptools/windows_support.py +30 -0
  3130. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/INSTALLER +1 -0
  3131. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/METADATA +141 -0
  3132. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/RECORD +759 -0
  3133. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/WHEEL +5 -0
  3134. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/entry_points.txt +51 -0
  3135. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/licenses/LICENSE +17 -0
  3136. package/.local/python/lib/python3.12/site-packages/setuptools-82.0.0.dist-info/top_level.txt +2 -0
  3137. package/.local/python/lib/python3.12/site-packages/virtualenv/__init__.py +10 -0
  3138. package/.local/python/lib/python3.12/site-packages/virtualenv/__main__.py +92 -0
  3139. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__init__.cpython-312.pyc +0 -0
  3140. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/__main__.cpython-312.pyc +0 -0
  3141. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/info.cpython-312.pyc +0 -0
  3142. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/report.cpython-312.pyc +0 -0
  3143. package/.local/python/lib/python3.12/site-packages/virtualenv/__pycache__/version.cpython-312.pyc +0 -0
  3144. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__init__.py +19 -0
  3145. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/__init__.cpython-312.pyc +0 -0
  3146. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/activator.cpython-312.pyc +0 -0
  3147. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/__pycache__/via_template.cpython-312.pyc +0 -0
  3148. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/activator.py +61 -0
  3149. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__init__.py +32 -0
  3150. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/__pycache__/__init__.cpython-312.pyc +0 -0
  3151. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/bash/activate.sh +132 -0
  3152. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__init__.py +38 -0
  3153. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/__pycache__/__init__.cpython-312.pyc +0 -0
  3154. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/activate.bat +59 -0
  3155. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/deactivate.bat +30 -0
  3156. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/batch/pydoc.bat +1 -0
  3157. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__init__.py +24 -0
  3158. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/__pycache__/__init__.cpython-312.pyc +0 -0
  3159. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/cshell/activate.csh +74 -0
  3160. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__init__.py +29 -0
  3161. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/__pycache__/__init__.cpython-312.pyc +0 -0
  3162. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/fish/activate.fish +118 -0
  3163. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__init__.py +51 -0
  3164. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/__pycache__/__init__.cpython-312.pyc +0 -0
  3165. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/nushell/activate.nu +89 -0
  3166. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__init__.py +30 -0
  3167. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/__pycache__/__init__.cpython-312.pyc +0 -0
  3168. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/powershell/activate.ps1 +213 -0
  3169. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__init__.py +39 -0
  3170. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/__init__.cpython-312.pyc +0 -0
  3171. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/__pycache__/activate_this.cpython-312.pyc +0 -0
  3172. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/python/activate_this.py +45 -0
  3173. package/.local/python/lib/python3.12/site-packages/virtualenv/activation/via_template.py +99 -0
  3174. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__init__.py +81 -0
  3175. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/__init__.cpython-312.pyc +0 -0
  3176. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/base.cpython-312.pyc +0 -0
  3177. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/na.cpython-312.pyc +0 -0
  3178. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/read_only.cpython-312.pyc +0 -0
  3179. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_disk_folder.cpython-312.pyc +0 -0
  3180. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/__pycache__/via_tempdir.cpython-312.pyc +0 -0
  3181. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/base.py +167 -0
  3182. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/na.py +78 -0
  3183. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/read_only.py +47 -0
  3184. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_disk_folder.py +181 -0
  3185. package/.local/python/lib/python3.12/site-packages/virtualenv/app_data/via_tempdir.py +38 -0
  3186. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__init__.py +0 -0
  3187. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/__init__.cpython-312.pyc +0 -0
  3188. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/convert.cpython-312.pyc +0 -0
  3189. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/env_var.cpython-312.pyc +0 -0
  3190. package/.local/python/lib/python3.12/site-packages/virtualenv/config/__pycache__/ini.cpython-312.pyc +0 -0
  3191. package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__init__.py +0 -0
  3192. package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/__init__.cpython-312.pyc +0 -0
  3193. package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/__pycache__/parser.cpython-312.pyc +0 -0
  3194. package/.local/python/lib/python3.12/site-packages/virtualenv/config/cli/parser.py +158 -0
  3195. package/.local/python/lib/python3.12/site-packages/virtualenv/config/convert.py +105 -0
  3196. package/.local/python/lib/python3.12/site-packages/virtualenv/config/env_var.py +38 -0
  3197. package/.local/python/lib/python3.12/site-packages/virtualenv/config/ini.py +83 -0
  3198. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__init__.py +0 -0
  3199. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/__init__.cpython-312.pyc +0 -0
  3200. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/creator.cpython-312.pyc +0 -0
  3201. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/debug.cpython-312.pyc +0 -0
  3202. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/describe.cpython-312.pyc +0 -0
  3203. package/.local/python/lib/python3.12/site-packages/virtualenv/create/__pycache__/pyenv_cfg.cpython-312.pyc +0 -0
  3204. package/.local/python/lib/python3.12/site-packages/virtualenv/create/creator.py +289 -0
  3205. package/.local/python/lib/python3.12/site-packages/virtualenv/create/debug.py +103 -0
  3206. package/.local/python/lib/python3.12/site-packages/virtualenv/create/describe.py +116 -0
  3207. package/.local/python/lib/python3.12/site-packages/virtualenv/create/pyenv_cfg.py +79 -0
  3208. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__init__.py +0 -0
  3209. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/__init__.cpython-312.pyc +0 -0
  3210. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/_virtualenv.cpython-312.pyc +0 -0
  3211. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/api.cpython-312.pyc +0 -0
  3212. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/store.cpython-312.pyc +0 -0
  3213. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/__pycache__/venv.cpython-312.pyc +0 -0
  3214. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/_virtualenv.py +128 -0
  3215. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/api.py +142 -0
  3216. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__init__.py +0 -0
  3217. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/__init__.cpython-312.pyc +0 -0
  3218. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/builtin_way.cpython-312.pyc +0 -0
  3219. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/ref.cpython-312.pyc +0 -0
  3220. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/__pycache__/via_global_self_do.cpython-312.pyc +0 -0
  3221. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/builtin_way.py +25 -0
  3222. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__init__.py +0 -0
  3223. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/__init__.cpython-312.pyc +0 -0
  3224. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/common.cpython-312.pyc +0 -0
  3225. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/cpython3.cpython-312.pyc +0 -0
  3226. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/__pycache__/mac_os.cpython-312.pyc +0 -0
  3227. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/common.py +99 -0
  3228. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/cpython3.py +220 -0
  3229. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/cpython/mac_os.py +290 -0
  3230. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__init__.py +99 -0
  3231. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/graalpy/__pycache__/__init__.cpython-312.pyc +0 -0
  3232. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__init__.py +0 -0
  3233. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/__init__.cpython-312.pyc +0 -0
  3234. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/common.cpython-312.pyc +0 -0
  3235. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/__pycache__/pypy3.cpython-312.pyc +0 -0
  3236. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/common.py +61 -0
  3237. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/pypy/pypy3.py +83 -0
  3238. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/ref.py +181 -0
  3239. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__init__.py +53 -0
  3240. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/rustpython/__pycache__/__init__.cpython-312.pyc +0 -0
  3241. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/builtin/via_global_self_do.py +135 -0
  3242. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/store.py +32 -0
  3243. package/.local/python/lib/python3.12/site-packages/virtualenv/create/via_global_ref/venv.py +112 -0
  3244. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__init__.py +0 -0
  3245. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/__init__.cpython-312.pyc +0 -0
  3246. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/builtin.cpython-312.pyc +0 -0
  3247. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/cached_py_info.cpython-312.pyc +0 -0
  3248. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/discover.cpython-312.pyc +0 -0
  3249. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_info.cpython-312.pyc +0 -0
  3250. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/__pycache__/py_spec.cpython-312.pyc +0 -0
  3251. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/builtin.py +87 -0
  3252. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/cached_py_info.py +10 -0
  3253. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/discover.py +43 -0
  3254. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_info.py +9 -0
  3255. package/.local/python/lib/python3.12/site-packages/virtualenv/discovery/py_spec.py +9 -0
  3256. package/.local/python/lib/python3.12/site-packages/virtualenv/info.py +72 -0
  3257. package/.local/python/lib/python3.12/site-packages/virtualenv/py.typed +0 -0
  3258. package/.local/python/lib/python3.12/site-packages/virtualenv/report.py +50 -0
  3259. package/.local/python/lib/python3.12/site-packages/virtualenv/run/__init__.py +197 -0
  3260. package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/__init__.cpython-312.pyc +0 -0
  3261. package/.local/python/lib/python3.12/site-packages/virtualenv/run/__pycache__/session.cpython-312.pyc +0 -0
  3262. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__init__.py +0 -0
  3263. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/__init__.cpython-312.pyc +0 -0
  3264. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/activators.cpython-312.pyc +0 -0
  3265. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/base.cpython-312.pyc +0 -0
  3266. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/creators.cpython-312.pyc +0 -0
  3267. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/discovery.cpython-312.pyc +0 -0
  3268. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/__pycache__/seeders.cpython-312.pyc +0 -0
  3269. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/activators.py +74 -0
  3270. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/base.py +77 -0
  3271. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/creators.py +98 -0
  3272. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/discovery.py +60 -0
  3273. package/.local/python/lib/python3.12/site-packages/virtualenv/run/plugin/seeders.py +51 -0
  3274. package/.local/python/lib/python3.12/site-packages/virtualenv/run/session.py +121 -0
  3275. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__init__.py +0 -0
  3276. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/__init__.cpython-312.pyc +0 -0
  3277. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/__pycache__/seeder.cpython-312.pyc +0 -0
  3278. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__init__.py +0 -0
  3279. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/__init__.cpython-312.pyc +0 -0
  3280. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/base_embed.cpython-312.pyc +0 -0
  3281. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/__pycache__/pip_invoke.cpython-312.pyc +0 -0
  3282. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/base_embed.py +150 -0
  3283. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/pip_invoke.py +83 -0
  3284. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__init__.py +0 -0
  3285. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/__init__.cpython-312.pyc +0 -0
  3286. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/__pycache__/via_app_data.cpython-312.pyc +0 -0
  3287. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__init__.py +0 -0
  3288. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/__init__.cpython-312.pyc +0 -0
  3289. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/base.cpython-312.pyc +0 -0
  3290. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/copy.cpython-312.pyc +0 -0
  3291. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/__pycache__/symlink.cpython-312.pyc +0 -0
  3292. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/base.py +214 -0
  3293. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/copy.py +44 -0
  3294. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/pip_install/symlink.py +62 -0
  3295. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/embed/via_app_data/via_app_data.py +160 -0
  3296. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/seeder.py +53 -0
  3297. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__init__.py +11 -0
  3298. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/__init__.cpython-312.pyc +0 -0
  3299. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/acquire.cpython-312.pyc +0 -0
  3300. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/bundle.cpython-312.pyc +0 -0
  3301. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/periodic_update.cpython-312.pyc +0 -0
  3302. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/__pycache__/util.cpython-312.pyc +0 -0
  3303. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/acquire.py +150 -0
  3304. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/bundle.py +65 -0
  3305. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__init__.py +60 -0
  3306. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/__pycache__/__init__.cpython-312.pyc +0 -0
  3307. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-25.0.1-py3-none-any.whl +0 -0
  3308. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/pip-26.0.1-py3-none-any.whl +0 -0
  3309. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-75.3.4-py3-none-any.whl +0 -0
  3310. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/setuptools-82.0.0-py3-none-any.whl +0 -0
  3311. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/embed/wheel-0.45.1-py3-none-any.whl +0 -0
  3312. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/periodic_update.py +458 -0
  3313. package/.local/python/lib/python3.12/site-packages/virtualenv/seed/wheels/util.py +125 -0
  3314. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__init__.py +0 -0
  3315. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/__init__.cpython-312.pyc +0 -0
  3316. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/error.cpython-312.pyc +0 -0
  3317. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/lock.cpython-312.pyc +0 -0
  3318. package/.local/python/lib/python3.12/site-packages/virtualenv/util/__pycache__/zipapp.cpython-312.pyc +0 -0
  3319. package/.local/python/lib/python3.12/site-packages/virtualenv/util/error.py +14 -0
  3320. package/.local/python/lib/python3.12/site-packages/virtualenv/util/lock.py +188 -0
  3321. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__init__.py +16 -0
  3322. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/__init__.cpython-312.pyc +0 -0
  3323. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_permission.cpython-312.pyc +0 -0
  3324. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_sync.cpython-312.pyc +0 -0
  3325. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/__pycache__/_win.cpython-312.pyc +0 -0
  3326. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_permission.py +34 -0
  3327. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_sync.py +90 -0
  3328. package/.local/python/lib/python3.12/site-packages/virtualenv/util/path/_win.py +23 -0
  3329. package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__init__.py +48 -0
  3330. package/.local/python/lib/python3.12/site-packages/virtualenv/util/subprocess/__pycache__/__init__.cpython-312.pyc +0 -0
  3331. package/.local/python/lib/python3.12/site-packages/virtualenv/util/zipapp.py +47 -0
  3332. package/.local/python/lib/python3.12/site-packages/virtualenv/version.py +34 -0
  3333. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/INSTALLER +1 -0
  3334. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/METADATA +65 -0
  3335. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/RECORD +203 -0
  3336. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/WHEEL +4 -0
  3337. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/entry_points.txt +31 -0
  3338. package/.local/python/lib/python3.12/site-packages/virtualenv-21.1.0.dist-info/licenses/LICENSE +20 -0
  3339. package/.local/python/lib/python3.12/site-packages/wheel/__init__.py +3 -0
  3340. package/.local/python/lib/python3.12/site-packages/wheel/__main__.py +25 -0
  3341. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__init__.cpython-312.pyc +0 -0
  3342. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/__main__.cpython-312.pyc +0 -0
  3343. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_bdist_wheel.cpython-312.pyc +0 -0
  3344. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_metadata.cpython-312.pyc +0 -0
  3345. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/_setuptools_logging.cpython-312.pyc +0 -0
  3346. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/bdist_wheel.cpython-312.pyc +0 -0
  3347. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/macosx_libfile.cpython-312.pyc +0 -0
  3348. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/metadata.cpython-312.pyc +0 -0
  3349. package/.local/python/lib/python3.12/site-packages/wheel/__pycache__/wheelfile.cpython-312.pyc +0 -0
  3350. package/.local/python/lib/python3.12/site-packages/wheel/_bdist_wheel.py +616 -0
  3351. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__init__.py +153 -0
  3352. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/__init__.cpython-312.pyc +0 -0
  3353. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/convert.cpython-312.pyc +0 -0
  3354. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/pack.cpython-312.pyc +0 -0
  3355. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/tags.cpython-312.pyc +0 -0
  3356. package/.local/python/lib/python3.12/site-packages/wheel/_commands/__pycache__/unpack.cpython-312.pyc +0 -0
  3357. package/.local/python/lib/python3.12/site-packages/wheel/_commands/convert.py +337 -0
  3358. package/.local/python/lib/python3.12/site-packages/wheel/_commands/pack.py +84 -0
  3359. package/.local/python/lib/python3.12/site-packages/wheel/_commands/tags.py +140 -0
  3360. package/.local/python/lib/python3.12/site-packages/wheel/_commands/unpack.py +30 -0
  3361. package/.local/python/lib/python3.12/site-packages/wheel/_metadata.py +184 -0
  3362. package/.local/python/lib/python3.12/site-packages/wheel/_setuptools_logging.py +26 -0
  3363. package/.local/python/lib/python3.12/site-packages/wheel/bdist_wheel.py +26 -0
  3364. package/.local/python/lib/python3.12/site-packages/wheel/macosx_libfile.py +486 -0
  3365. package/.local/python/lib/python3.12/site-packages/wheel/metadata.py +17 -0
  3366. package/.local/python/lib/python3.12/site-packages/wheel/wheelfile.py +241 -0
  3367. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/INSTALLER +1 -0
  3368. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/METADATA +69 -0
  3369. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/RECORD +36 -0
  3370. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/REQUESTED +0 -0
  3371. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/WHEEL +4 -0
  3372. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/entry_points.txt +6 -0
  3373. package/.local/python/lib/python3.12/site-packages/wheel-0.46.3.dist-info/licenses/LICENSE.txt +21 -0
  3374. package/.local/python/pyvenv.cfg +5 -0
  3375. package/.tool-versions +2 -0
  3376. package/README.md +5 -0
  3377. package/package.json +1 -1
  3378. package/scripts/changes/.github/workflows/test.yaml +58 -0
  3379. package/scripts/changes/Pipfile +14 -0
  3380. package/scripts/changes/README.md +45 -0
  3381. package/scripts/changes/changes +27 -0
  3382. package/scripts/changes/changes.py +890 -0
  3383. package/scripts/changes/cli.py +80 -0
  3384. package/scripts/changes/examples/gh-release.sh +38 -0
  3385. package/scripts/changes/scripts/release.sh +28 -0
  3386. package/scripts/changes/scripts/test.sh +54 -0
  3387. package/scripts/changes/templates/multiple.markdown +9 -0
  3388. package/scripts/changes/templates/single.markdown +9 -0
  3389. package/scripts/changes/tests/common.py +195 -0
  3390. package/scripts/changes/tests/test_cli.py +1064 -0
  3391. package/scripts/changes/tests/test_common.py +73 -0
  3392. package/scripts/changes/tests/test_history.py +114 -0
  3393. package/scripts/changes/tests/test_version.py +199 -0
  3394. package/scripts/environment.sh +33 -0
  3395. package/scripts/install-dependencies.sh +52 -0
  3396. package/scripts/release.sh +87 -0
  3397. package/scripts/upload-and-publish-release.sh +38 -0
@@ -0,0 +1,3676 @@
1
+ # TODO: Add Generic type annotations to initialized collections.
2
+ # For now we'd simply use implicit Any/Unknown which would add redundant annotations
3
+ # mypy: disable-error-code="var-annotated"
4
+ """
5
+ Package resource API
6
+ --------------------
7
+
8
+ A resource is a logical file contained within a package, or a logical
9
+ subdirectory thereof. The package resource API expects resource names
10
+ to have their path parts separated with ``/``, *not* whatever the local
11
+ path separator is. Do not use os.path operations to manipulate resource
12
+ names being passed into the API.
13
+
14
+ The package resource API is designed to work with normal filesystem packages,
15
+ .egg files, and unpacked .egg files. It can also work in a limited way with
16
+ .zip files and with custom PEP 302 loaders that support the ``get_data()``
17
+ method.
18
+
19
+ This module is deprecated. Users are directed to :mod:`importlib.resources`,
20
+ :mod:`importlib.metadata` and :pypi:`packaging` instead.
21
+ """
22
+
23
+ from __future__ import annotations
24
+
25
+ import sys
26
+
27
+ if sys.version_info < (3, 8): # noqa: UP036 # Check for unsupported versions
28
+ raise RuntimeError("Python 3.8 or later is required")
29
+
30
+ import os
31
+ import io
32
+ import time
33
+ import re
34
+ import types
35
+ from typing import (
36
+ Any,
37
+ Literal,
38
+ Dict,
39
+ Iterator,
40
+ Mapping,
41
+ MutableSequence,
42
+ NamedTuple,
43
+ NoReturn,
44
+ Tuple,
45
+ Union,
46
+ TYPE_CHECKING,
47
+ Protocol,
48
+ Callable,
49
+ Iterable,
50
+ TypeVar,
51
+ overload,
52
+ )
53
+ import zipfile
54
+ import zipimport
55
+ import warnings
56
+ import stat
57
+ import functools
58
+ import pkgutil
59
+ import operator
60
+ import platform
61
+ import collections
62
+ import plistlib
63
+ import email.parser
64
+ import errno
65
+ import tempfile
66
+ import textwrap
67
+ import inspect
68
+ import ntpath
69
+ import posixpath
70
+ import importlib
71
+ import importlib.abc
72
+ import importlib.machinery
73
+ from pkgutil import get_importer
74
+
75
+ import _imp
76
+
77
+ # capture these to bypass sandboxing
78
+ from os import utime
79
+ from os import open as os_open
80
+ from os.path import isdir, split
81
+
82
+ try:
83
+ from os import mkdir, rename, unlink
84
+
85
+ WRITE_SUPPORT = True
86
+ except ImportError:
87
+ # no write support, probably under GAE
88
+ WRITE_SUPPORT = False
89
+
90
+ from pipenv.patched.pip._internal.utils._jaraco_text import (
91
+ yield_lines,
92
+ drop_comment,
93
+ join_continuation,
94
+ )
95
+ from pipenv.patched.pip._vendor.packaging import markers as _packaging_markers
96
+ from pipenv.patched.pip._vendor.packaging import requirements as _packaging_requirements
97
+ from pipenv.patched.pip._vendor.packaging import utils as _packaging_utils
98
+ from pipenv.patched.pip._vendor.packaging import version as _packaging_version
99
+ from pipenv.patched.pip._vendor.platformdirs import user_cache_dir as _user_cache_dir
100
+
101
+ if TYPE_CHECKING:
102
+ from _typeshed import BytesPath, StrPath, StrOrBytesPath
103
+ from typing_extensions import Self
104
+
105
+
106
+ # Patch: Remove deprecation warning from vendored pkg_resources.
107
+ # Setting PYTHONWARNINGS=error to verify builds produce no warnings
108
+ # causes immediate exceptions.
109
+ # See https://github.com/pypa/pip/issues/12243
110
+
111
+
112
+ _T = TypeVar("_T")
113
+ _DistributionT = TypeVar("_DistributionT", bound="Distribution")
114
+ # Type aliases
115
+ _NestedStr = Union[str, Iterable[Union[str, Iterable["_NestedStr"]]]]
116
+ _InstallerTypeT = Callable[["Requirement"], "_DistributionT"]
117
+ _InstallerType = Callable[["Requirement"], Union["Distribution", None]]
118
+ _PkgReqType = Union[str, "Requirement"]
119
+ _EPDistType = Union["Distribution", _PkgReqType]
120
+ _MetadataType = Union["IResourceProvider", None]
121
+ _ResolvedEntryPoint = Any # Can be any attribute in the module
122
+ _ResourceStream = Any # TODO / Incomplete: A readable file-like object
123
+ # Any object works, but let's indicate we expect something like a module (optionally has __loader__ or __file__)
124
+ _ModuleLike = Union[object, types.ModuleType]
125
+ # Any: Should be _ModuleLike but we end up with issues where _ModuleLike doesn't have _ZipLoaderModule's __loader__
126
+ _ProviderFactoryType = Callable[[Any], "IResourceProvider"]
127
+ _DistFinderType = Callable[[_T, str, bool], Iterable["Distribution"]]
128
+ _NSHandlerType = Callable[[_T, str, str, types.ModuleType], Union[str, None]]
129
+ _AdapterT = TypeVar(
130
+ "_AdapterT", _DistFinderType[Any], _ProviderFactoryType, _NSHandlerType[Any]
131
+ )
132
+
133
+
134
+ # Use _typeshed.importlib.LoaderProtocol once available https://github.com/python/typeshed/pull/11890
135
+ class _LoaderProtocol(Protocol):
136
+ def load_module(self, fullname: str, /) -> types.ModuleType: ...
137
+
138
+
139
+ class _ZipLoaderModule(Protocol):
140
+ __loader__: zipimport.zipimporter
141
+
142
+
143
+ _PEP440_FALLBACK = re.compile(r"^v?(?P<safe>(?:[0-9]+!)?[0-9]+(?:\.[0-9]+)*)", re.I)
144
+
145
+
146
+ class PEP440Warning(RuntimeWarning):
147
+ """
148
+ Used when there is an issue with a version or specifier not complying with
149
+ PEP 440.
150
+ """
151
+
152
+
153
+ parse_version = _packaging_version.Version
154
+
155
+
156
+ _state_vars: dict[str, str] = {}
157
+
158
+
159
+ def _declare_state(vartype: str, varname: str, initial_value: _T) -> _T:
160
+ _state_vars[varname] = vartype
161
+ return initial_value
162
+
163
+
164
+ def __getstate__() -> dict[str, Any]:
165
+ state = {}
166
+ g = globals()
167
+ for k, v in _state_vars.items():
168
+ state[k] = g['_sget_' + v](g[k])
169
+ return state
170
+
171
+
172
+ def __setstate__(state: dict[str, Any]) -> dict[str, Any]:
173
+ g = globals()
174
+ for k, v in state.items():
175
+ g['_sset_' + _state_vars[k]](k, g[k], v)
176
+ return state
177
+
178
+
179
+ def _sget_dict(val):
180
+ return val.copy()
181
+
182
+
183
+ def _sset_dict(key, ob, state):
184
+ ob.clear()
185
+ ob.update(state)
186
+
187
+
188
+ def _sget_object(val):
189
+ return val.__getstate__()
190
+
191
+
192
+ def _sset_object(key, ob, state):
193
+ ob.__setstate__(state)
194
+
195
+
196
+ _sget_none = _sset_none = lambda *args: None
197
+
198
+
199
+ def get_supported_platform():
200
+ """Return this platform's maximum compatible version.
201
+
202
+ distutils.util.get_platform() normally reports the minimum version
203
+ of macOS that would be required to *use* extensions produced by
204
+ distutils. But what we want when checking compatibility is to know the
205
+ version of macOS that we are *running*. To allow usage of packages that
206
+ explicitly require a newer version of macOS, we must also know the
207
+ current version of the OS.
208
+
209
+ If this condition occurs for any other platform with a version in its
210
+ platform strings, this function should be extended accordingly.
211
+ """
212
+ plat = get_build_platform()
213
+ m = macosVersionString.match(plat)
214
+ if m is not None and sys.platform == "darwin":
215
+ try:
216
+ plat = 'macosx-%s-%s' % ('.'.join(_macos_vers()[:2]), m.group(3))
217
+ except ValueError:
218
+ # not macOS
219
+ pass
220
+ return plat
221
+
222
+
223
+ __all__ = [
224
+ # Basic resource access and distribution/entry point discovery
225
+ 'require',
226
+ 'run_script',
227
+ 'get_provider',
228
+ 'get_distribution',
229
+ 'load_entry_point',
230
+ 'get_entry_map',
231
+ 'get_entry_info',
232
+ 'iter_entry_points',
233
+ 'resource_string',
234
+ 'resource_stream',
235
+ 'resource_filename',
236
+ 'resource_listdir',
237
+ 'resource_exists',
238
+ 'resource_isdir',
239
+ # Environmental control
240
+ 'declare_namespace',
241
+ 'working_set',
242
+ 'add_activation_listener',
243
+ 'find_distributions',
244
+ 'set_extraction_path',
245
+ 'cleanup_resources',
246
+ 'get_default_cache',
247
+ # Primary implementation classes
248
+ 'Environment',
249
+ 'WorkingSet',
250
+ 'ResourceManager',
251
+ 'Distribution',
252
+ 'Requirement',
253
+ 'EntryPoint',
254
+ # Exceptions
255
+ 'ResolutionError',
256
+ 'VersionConflict',
257
+ 'DistributionNotFound',
258
+ 'UnknownExtra',
259
+ 'ExtractionError',
260
+ # Warnings
261
+ 'PEP440Warning',
262
+ # Parsing functions and string utilities
263
+ 'parse_requirements',
264
+ 'parse_version',
265
+ 'safe_name',
266
+ 'safe_version',
267
+ 'get_platform',
268
+ 'compatible_platforms',
269
+ 'yield_lines',
270
+ 'split_sections',
271
+ 'safe_extra',
272
+ 'to_filename',
273
+ 'invalid_marker',
274
+ 'evaluate_marker',
275
+ # filesystem utilities
276
+ 'ensure_directory',
277
+ 'normalize_path',
278
+ # Distribution "precedence" constants
279
+ 'EGG_DIST',
280
+ 'BINARY_DIST',
281
+ 'SOURCE_DIST',
282
+ 'CHECKOUT_DIST',
283
+ 'DEVELOP_DIST',
284
+ # "Provider" interfaces, implementations, and registration/lookup APIs
285
+ 'IMetadataProvider',
286
+ 'IResourceProvider',
287
+ 'FileMetadata',
288
+ 'PathMetadata',
289
+ 'EggMetadata',
290
+ 'EmptyProvider',
291
+ 'empty_provider',
292
+ 'NullProvider',
293
+ 'EggProvider',
294
+ 'DefaultProvider',
295
+ 'ZipProvider',
296
+ 'register_finder',
297
+ 'register_namespace_handler',
298
+ 'register_loader_type',
299
+ 'fixup_namespace_packages',
300
+ 'get_importer',
301
+ # Warnings
302
+ 'PkgResourcesDeprecationWarning',
303
+ # Deprecated/backward compatibility only
304
+ 'run_main',
305
+ 'AvailableDistributions',
306
+ ]
307
+
308
+
309
+ class ResolutionError(Exception):
310
+ """Abstract base for dependency resolution errors"""
311
+
312
+ def __repr__(self):
313
+ return self.__class__.__name__ + repr(self.args)
314
+
315
+
316
+ class VersionConflict(ResolutionError):
317
+ """
318
+ An already-installed version conflicts with the requested version.
319
+
320
+ Should be initialized with the installed Distribution and the requested
321
+ Requirement.
322
+ """
323
+
324
+ _template = "{self.dist} is installed but {self.req} is required"
325
+
326
+ @property
327
+ def dist(self) -> Distribution:
328
+ return self.args[0]
329
+
330
+ @property
331
+ def req(self) -> Requirement:
332
+ return self.args[1]
333
+
334
+ def report(self):
335
+ return self._template.format(**locals())
336
+
337
+ def with_context(self, required_by: set[Distribution | str]):
338
+ """
339
+ If required_by is non-empty, return a version of self that is a
340
+ ContextualVersionConflict.
341
+ """
342
+ if not required_by:
343
+ return self
344
+ args = self.args + (required_by,)
345
+ return ContextualVersionConflict(*args)
346
+
347
+
348
+ class ContextualVersionConflict(VersionConflict):
349
+ """
350
+ A VersionConflict that accepts a third parameter, the set of the
351
+ requirements that required the installed Distribution.
352
+ """
353
+
354
+ _template = VersionConflict._template + ' by {self.required_by}'
355
+
356
+ @property
357
+ def required_by(self) -> set[str]:
358
+ return self.args[2]
359
+
360
+
361
+ class DistributionNotFound(ResolutionError):
362
+ """A requested distribution was not found"""
363
+
364
+ _template = (
365
+ "The '{self.req}' distribution was not found "
366
+ "and is required by {self.requirers_str}"
367
+ )
368
+
369
+ @property
370
+ def req(self) -> Requirement:
371
+ return self.args[0]
372
+
373
+ @property
374
+ def requirers(self) -> set[str] | None:
375
+ return self.args[1]
376
+
377
+ @property
378
+ def requirers_str(self):
379
+ if not self.requirers:
380
+ return 'the application'
381
+ return ', '.join(self.requirers)
382
+
383
+ def report(self):
384
+ return self._template.format(**locals())
385
+
386
+ def __str__(self):
387
+ return self.report()
388
+
389
+
390
+ class UnknownExtra(ResolutionError):
391
+ """Distribution doesn't have an "extra feature" of the given name"""
392
+
393
+
394
+ _provider_factories: dict[type[_ModuleLike], _ProviderFactoryType] = {}
395
+
396
+ PY_MAJOR = '{}.{}'.format(*sys.version_info)
397
+ EGG_DIST = 3
398
+ BINARY_DIST = 2
399
+ SOURCE_DIST = 1
400
+ CHECKOUT_DIST = 0
401
+ DEVELOP_DIST = -1
402
+
403
+
404
+ def register_loader_type(
405
+ loader_type: type[_ModuleLike], provider_factory: _ProviderFactoryType
406
+ ):
407
+ """Register `provider_factory` to make providers for `loader_type`
408
+
409
+ `loader_type` is the type or class of a PEP 302 ``module.__loader__``,
410
+ and `provider_factory` is a function that, passed a *module* object,
411
+ returns an ``IResourceProvider`` for that module.
412
+ """
413
+ _provider_factories[loader_type] = provider_factory
414
+
415
+
416
+ @overload
417
+ def get_provider(moduleOrReq: str) -> IResourceProvider: ...
418
+ @overload
419
+ def get_provider(moduleOrReq: Requirement) -> Distribution: ...
420
+ def get_provider(moduleOrReq: str | Requirement) -> IResourceProvider | Distribution:
421
+ """Return an IResourceProvider for the named module or requirement"""
422
+ if isinstance(moduleOrReq, Requirement):
423
+ return working_set.find(moduleOrReq) or require(str(moduleOrReq))[0]
424
+ try:
425
+ module = sys.modules[moduleOrReq]
426
+ except KeyError:
427
+ __import__(moduleOrReq)
428
+ module = sys.modules[moduleOrReq]
429
+ loader = getattr(module, '__loader__', None)
430
+ return _find_adapter(_provider_factories, loader)(module)
431
+
432
+
433
+ @functools.lru_cache(maxsize=None)
434
+ def _macos_vers():
435
+ version = platform.mac_ver()[0]
436
+ # fallback for MacPorts
437
+ if version == '':
438
+ plist = '/System/Library/CoreServices/SystemVersion.plist'
439
+ if os.path.exists(plist):
440
+ with open(plist, 'rb') as fh:
441
+ plist_content = plistlib.load(fh)
442
+ if 'ProductVersion' in plist_content:
443
+ version = plist_content['ProductVersion']
444
+ return version.split('.')
445
+
446
+
447
+ def _macos_arch(machine):
448
+ return {'PowerPC': 'ppc', 'Power_Macintosh': 'ppc'}.get(machine, machine)
449
+
450
+
451
+ def get_build_platform():
452
+ """Return this platform's string for platform-specific distributions
453
+
454
+ XXX Currently this is the same as ``distutils.util.get_platform()``, but it
455
+ needs some hacks for Linux and macOS.
456
+ """
457
+ from sysconfig import get_platform
458
+
459
+ plat = get_platform()
460
+ if sys.platform == "darwin" and not plat.startswith('macosx-'):
461
+ try:
462
+ version = _macos_vers()
463
+ machine = os.uname()[4].replace(" ", "_")
464
+ return "macosx-%d.%d-%s" % (
465
+ int(version[0]),
466
+ int(version[1]),
467
+ _macos_arch(machine),
468
+ )
469
+ except ValueError:
470
+ # if someone is running a non-Mac darwin system, this will fall
471
+ # through to the default implementation
472
+ pass
473
+ return plat
474
+
475
+
476
+ macosVersionString = re.compile(r"macosx-(\d+)\.(\d+)-(.*)")
477
+ darwinVersionString = re.compile(r"darwin-(\d+)\.(\d+)\.(\d+)-(.*)")
478
+ # XXX backward compat
479
+ get_platform = get_build_platform
480
+
481
+
482
+ def compatible_platforms(provided: str | None, required: str | None):
483
+ """Can code for the `provided` platform run on the `required` platform?
484
+
485
+ Returns true if either platform is ``None``, or the platforms are equal.
486
+
487
+ XXX Needs compatibility checks for Linux and other unixy OSes.
488
+ """
489
+ if provided is None or required is None or provided == required:
490
+ # easy case
491
+ return True
492
+
493
+ # macOS special cases
494
+ reqMac = macosVersionString.match(required)
495
+ if reqMac:
496
+ provMac = macosVersionString.match(provided)
497
+
498
+ # is this a Mac package?
499
+ if not provMac:
500
+ # this is backwards compatibility for packages built before
501
+ # setuptools 0.6. All packages built after this point will
502
+ # use the new macOS designation.
503
+ provDarwin = darwinVersionString.match(provided)
504
+ if provDarwin:
505
+ dversion = int(provDarwin.group(1))
506
+ macosversion = "%s.%s" % (reqMac.group(1), reqMac.group(2))
507
+ if (
508
+ dversion == 7
509
+ and macosversion >= "10.3"
510
+ or dversion == 8
511
+ and macosversion >= "10.4"
512
+ ):
513
+ return True
514
+ # egg isn't macOS or legacy darwin
515
+ return False
516
+
517
+ # are they the same major version and machine type?
518
+ if provMac.group(1) != reqMac.group(1) or provMac.group(3) != reqMac.group(3):
519
+ return False
520
+
521
+ # is the required OS major update >= the provided one?
522
+ if int(provMac.group(2)) > int(reqMac.group(2)):
523
+ return False
524
+
525
+ return True
526
+
527
+ # XXX Linux and other platforms' special cases should go here
528
+ return False
529
+
530
+
531
+ @overload
532
+ def get_distribution(dist: _DistributionT) -> _DistributionT: ...
533
+ @overload
534
+ def get_distribution(dist: _PkgReqType) -> Distribution: ...
535
+ def get_distribution(dist: Distribution | _PkgReqType) -> Distribution:
536
+ """Return a current distribution object for a Requirement or string"""
537
+ if isinstance(dist, str):
538
+ dist = Requirement.parse(dist)
539
+ if isinstance(dist, Requirement):
540
+ # Bad type narrowing, dist has to be a Requirement here, so get_provider has to return Distribution
541
+ dist = get_provider(dist) # type: ignore[assignment]
542
+ if not isinstance(dist, Distribution):
543
+ raise TypeError("Expected str, Requirement, or Distribution", dist)
544
+ return dist
545
+
546
+
547
+ def load_entry_point(dist: _EPDistType, group: str, name: str) -> _ResolvedEntryPoint:
548
+ """Return `name` entry point of `group` for `dist` or raise ImportError"""
549
+ return get_distribution(dist).load_entry_point(group, name)
550
+
551
+
552
+ @overload
553
+ def get_entry_map(
554
+ dist: _EPDistType, group: None = None
555
+ ) -> dict[str, dict[str, EntryPoint]]: ...
556
+ @overload
557
+ def get_entry_map(dist: _EPDistType, group: str) -> dict[str, EntryPoint]: ...
558
+ def get_entry_map(dist: _EPDistType, group: str | None = None):
559
+ """Return the entry point map for `group`, or the full entry map"""
560
+ return get_distribution(dist).get_entry_map(group)
561
+
562
+
563
+ def get_entry_info(dist: _EPDistType, group: str, name: str):
564
+ """Return the EntryPoint object for `group`+`name`, or ``None``"""
565
+ return get_distribution(dist).get_entry_info(group, name)
566
+
567
+
568
+ class IMetadataProvider(Protocol):
569
+ def has_metadata(self, name: str) -> bool:
570
+ """Does the package's distribution contain the named metadata?"""
571
+
572
+ def get_metadata(self, name: str) -> str:
573
+ """The named metadata resource as a string"""
574
+
575
+ def get_metadata_lines(self, name: str) -> Iterator[str]:
576
+ """Yield named metadata resource as list of non-blank non-comment lines
577
+
578
+ Leading and trailing whitespace is stripped from each line, and lines
579
+ with ``#`` as the first non-blank character are omitted."""
580
+
581
+ def metadata_isdir(self, name: str) -> bool:
582
+ """Is the named metadata a directory? (like ``os.path.isdir()``)"""
583
+
584
+ def metadata_listdir(self, name: str) -> list[str]:
585
+ """List of metadata names in the directory (like ``os.listdir()``)"""
586
+
587
+ def run_script(self, script_name: str, namespace: dict[str, Any]) -> None:
588
+ """Execute the named script in the supplied namespace dictionary"""
589
+
590
+
591
+ class IResourceProvider(IMetadataProvider, Protocol):
592
+ """An object that provides access to package resources"""
593
+
594
+ def get_resource_filename(
595
+ self, manager: ResourceManager, resource_name: str
596
+ ) -> str:
597
+ """Return a true filesystem path for `resource_name`
598
+
599
+ `manager` must be a ``ResourceManager``"""
600
+
601
+ def get_resource_stream(
602
+ self, manager: ResourceManager, resource_name: str
603
+ ) -> _ResourceStream:
604
+ """Return a readable file-like object for `resource_name`
605
+
606
+ `manager` must be a ``ResourceManager``"""
607
+
608
+ def get_resource_string(
609
+ self, manager: ResourceManager, resource_name: str
610
+ ) -> bytes:
611
+ """Return the contents of `resource_name` as :obj:`bytes`
612
+
613
+ `manager` must be a ``ResourceManager``"""
614
+
615
+ def has_resource(self, resource_name: str) -> bool:
616
+ """Does the package contain the named resource?"""
617
+
618
+ def resource_isdir(self, resource_name: str) -> bool:
619
+ """Is the named resource a directory? (like ``os.path.isdir()``)"""
620
+
621
+ def resource_listdir(self, resource_name: str) -> list[str]:
622
+ """List of resource names in the directory (like ``os.listdir()``)"""
623
+
624
+
625
+ class WorkingSet:
626
+ """A collection of active distributions on sys.path (or a similar list)"""
627
+
628
+ def __init__(self, entries: Iterable[str] | None = None):
629
+ """Create working set from list of path entries (default=sys.path)"""
630
+ self.entries: list[str] = []
631
+ self.entry_keys = {}
632
+ self.by_key = {}
633
+ self.normalized_to_canonical_keys = {}
634
+ self.callbacks = []
635
+
636
+ if entries is None:
637
+ entries = sys.path
638
+
639
+ for entry in entries:
640
+ self.add_entry(entry)
641
+
642
+ @classmethod
643
+ def _build_master(cls):
644
+ """
645
+ Prepare the master working set.
646
+ """
647
+ ws = cls()
648
+ try:
649
+ from __main__ import __requires__
650
+ except ImportError:
651
+ # The main program does not list any requirements
652
+ return ws
653
+
654
+ # ensure the requirements are met
655
+ try:
656
+ ws.require(__requires__)
657
+ except VersionConflict:
658
+ return cls._build_from_requirements(__requires__)
659
+
660
+ return ws
661
+
662
+ @classmethod
663
+ def _build_from_requirements(cls, req_spec):
664
+ """
665
+ Build a working set from a requirement spec. Rewrites sys.path.
666
+ """
667
+ # try it without defaults already on sys.path
668
+ # by starting with an empty path
669
+ ws = cls([])
670
+ reqs = parse_requirements(req_spec)
671
+ dists = ws.resolve(reqs, Environment())
672
+ for dist in dists:
673
+ ws.add(dist)
674
+
675
+ # add any missing entries from sys.path
676
+ for entry in sys.path:
677
+ if entry not in ws.entries:
678
+ ws.add_entry(entry)
679
+
680
+ # then copy back to sys.path
681
+ sys.path[:] = ws.entries
682
+ return ws
683
+
684
+ def add_entry(self, entry: str):
685
+ """Add a path item to ``.entries``, finding any distributions on it
686
+
687
+ ``find_distributions(entry, True)`` is used to find distributions
688
+ corresponding to the path entry, and they are added. `entry` is
689
+ always appended to ``.entries``, even if it is already present.
690
+ (This is because ``sys.path`` can contain the same value more than
691
+ once, and the ``.entries`` of the ``sys.path`` WorkingSet should always
692
+ equal ``sys.path``.)
693
+ """
694
+ self.entry_keys.setdefault(entry, [])
695
+ self.entries.append(entry)
696
+ for dist in find_distributions(entry, True):
697
+ self.add(dist, entry, False)
698
+
699
+ def __contains__(self, dist: Distribution) -> bool:
700
+ """True if `dist` is the active distribution for its project"""
701
+ return self.by_key.get(dist.key) == dist
702
+
703
+ def find(self, req: Requirement) -> Distribution | None:
704
+ """Find a distribution matching requirement `req`
705
+
706
+ If there is an active distribution for the requested project, this
707
+ returns it as long as it meets the version requirement specified by
708
+ `req`. But, if there is an active distribution for the project and it
709
+ does *not* meet the `req` requirement, ``VersionConflict`` is raised.
710
+ If there is no active distribution for the requested project, ``None``
711
+ is returned.
712
+ """
713
+ dist = self.by_key.get(req.key)
714
+
715
+ if dist is None:
716
+ canonical_key = self.normalized_to_canonical_keys.get(req.key)
717
+
718
+ if canonical_key is not None:
719
+ req.key = canonical_key
720
+ dist = self.by_key.get(canonical_key)
721
+
722
+ if dist is not None and dist not in req:
723
+ # XXX add more info
724
+ raise VersionConflict(dist, req)
725
+ return dist
726
+
727
+ def iter_entry_points(self, group: str, name: str | None = None):
728
+ """Yield entry point objects from `group` matching `name`
729
+
730
+ If `name` is None, yields all entry points in `group` from all
731
+ distributions in the working set, otherwise only ones matching
732
+ both `group` and `name` are yielded (in distribution order).
733
+ """
734
+ return (
735
+ entry
736
+ for dist in self
737
+ for entry in dist.get_entry_map(group).values()
738
+ if name is None or name == entry.name
739
+ )
740
+
741
+ def run_script(self, requires: str, script_name: str):
742
+ """Locate distribution for `requires` and run `script_name` script"""
743
+ ns = sys._getframe(1).f_globals
744
+ name = ns['__name__']
745
+ ns.clear()
746
+ ns['__name__'] = name
747
+ self.require(requires)[0].run_script(script_name, ns)
748
+
749
+ def __iter__(self) -> Iterator[Distribution]:
750
+ """Yield distributions for non-duplicate projects in the working set
751
+
752
+ The yield order is the order in which the items' path entries were
753
+ added to the working set.
754
+ """
755
+ seen = set()
756
+ for item in self.entries:
757
+ if item not in self.entry_keys:
758
+ # workaround a cache issue
759
+ continue
760
+
761
+ for key in self.entry_keys[item]:
762
+ if key not in seen:
763
+ seen.add(key)
764
+ yield self.by_key[key]
765
+
766
+ def add(
767
+ self,
768
+ dist: Distribution,
769
+ entry: str | None = None,
770
+ insert: bool = True,
771
+ replace: bool = False,
772
+ ):
773
+ """Add `dist` to working set, associated with `entry`
774
+
775
+ If `entry` is unspecified, it defaults to the ``.location`` of `dist`.
776
+ On exit from this routine, `entry` is added to the end of the working
777
+ set's ``.entries`` (if it wasn't already present).
778
+
779
+ `dist` is only added to the working set if it's for a project that
780
+ doesn't already have a distribution in the set, unless `replace=True`.
781
+ If it's added, any callbacks registered with the ``subscribe()`` method
782
+ will be called.
783
+ """
784
+ if insert:
785
+ dist.insert_on(self.entries, entry, replace=replace)
786
+
787
+ if entry is None:
788
+ entry = dist.location
789
+ keys = self.entry_keys.setdefault(entry, [])
790
+ keys2 = self.entry_keys.setdefault(dist.location, [])
791
+ if not replace and dist.key in self.by_key:
792
+ # ignore hidden distros
793
+ return
794
+
795
+ self.by_key[dist.key] = dist
796
+ normalized_name = _packaging_utils.canonicalize_name(dist.key)
797
+ self.normalized_to_canonical_keys[normalized_name] = dist.key
798
+ if dist.key not in keys:
799
+ keys.append(dist.key)
800
+ if dist.key not in keys2:
801
+ keys2.append(dist.key)
802
+ self._added_new(dist)
803
+
804
+ @overload
805
+ def resolve(
806
+ self,
807
+ requirements: Iterable[Requirement],
808
+ env: Environment | None,
809
+ installer: _InstallerTypeT[_DistributionT],
810
+ replace_conflicting: bool = False,
811
+ extras: tuple[str, ...] | None = None,
812
+ ) -> list[_DistributionT]: ...
813
+ @overload
814
+ def resolve(
815
+ self,
816
+ requirements: Iterable[Requirement],
817
+ env: Environment | None = None,
818
+ *,
819
+ installer: _InstallerTypeT[_DistributionT],
820
+ replace_conflicting: bool = False,
821
+ extras: tuple[str, ...] | None = None,
822
+ ) -> list[_DistributionT]: ...
823
+ @overload
824
+ def resolve(
825
+ self,
826
+ requirements: Iterable[Requirement],
827
+ env: Environment | None = None,
828
+ installer: _InstallerType | None = None,
829
+ replace_conflicting: bool = False,
830
+ extras: tuple[str, ...] | None = None,
831
+ ) -> list[Distribution]: ...
832
+ def resolve(
833
+ self,
834
+ requirements: Iterable[Requirement],
835
+ env: Environment | None = None,
836
+ installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
837
+ replace_conflicting: bool = False,
838
+ extras: tuple[str, ...] | None = None,
839
+ ) -> list[Distribution] | list[_DistributionT]:
840
+ """List all distributions needed to (recursively) meet `requirements`
841
+
842
+ `requirements` must be a sequence of ``Requirement`` objects. `env`,
843
+ if supplied, should be an ``Environment`` instance. If
844
+ not supplied, it defaults to all distributions available within any
845
+ entry or distribution in the working set. `installer`, if supplied,
846
+ will be invoked with each requirement that cannot be met by an
847
+ already-installed distribution; it should return a ``Distribution`` or
848
+ ``None``.
849
+
850
+ Unless `replace_conflicting=True`, raises a VersionConflict exception
851
+ if
852
+ any requirements are found on the path that have the correct name but
853
+ the wrong version. Otherwise, if an `installer` is supplied it will be
854
+ invoked to obtain the correct version of the requirement and activate
855
+ it.
856
+
857
+ `extras` is a list of the extras to be used with these requirements.
858
+ This is important because extra requirements may look like `my_req;
859
+ extra = "my_extra"`, which would otherwise be interpreted as a purely
860
+ optional requirement. Instead, we want to be able to assert that these
861
+ requirements are truly required.
862
+ """
863
+
864
+ # set up the stack
865
+ requirements = list(requirements)[::-1]
866
+ # set of processed requirements
867
+ processed = set()
868
+ # key -> dist
869
+ best = {}
870
+ to_activate = []
871
+
872
+ req_extras = _ReqExtras()
873
+
874
+ # Mapping of requirement to set of distributions that required it;
875
+ # useful for reporting info about conflicts.
876
+ required_by = collections.defaultdict(set)
877
+
878
+ while requirements:
879
+ # process dependencies breadth-first
880
+ req = requirements.pop(0)
881
+ if req in processed:
882
+ # Ignore cyclic or redundant dependencies
883
+ continue
884
+
885
+ if not req_extras.markers_pass(req, extras):
886
+ continue
887
+
888
+ dist = self._resolve_dist(
889
+ req, best, replace_conflicting, env, installer, required_by, to_activate
890
+ )
891
+
892
+ # push the new requirements onto the stack
893
+ new_requirements = dist.requires(req.extras)[::-1]
894
+ requirements.extend(new_requirements)
895
+
896
+ # Register the new requirements needed by req
897
+ for new_requirement in new_requirements:
898
+ required_by[new_requirement].add(req.project_name)
899
+ req_extras[new_requirement] = req.extras
900
+
901
+ processed.add(req)
902
+
903
+ # return list of distros to activate
904
+ return to_activate
905
+
906
+ def _resolve_dist(
907
+ self, req, best, replace_conflicting, env, installer, required_by, to_activate
908
+ ) -> Distribution:
909
+ dist = best.get(req.key)
910
+ if dist is None:
911
+ # Find the best distribution and add it to the map
912
+ dist = self.by_key.get(req.key)
913
+ if dist is None or (dist not in req and replace_conflicting):
914
+ ws = self
915
+ if env is None:
916
+ if dist is None:
917
+ env = Environment(self.entries)
918
+ else:
919
+ # Use an empty environment and workingset to avoid
920
+ # any further conflicts with the conflicting
921
+ # distribution
922
+ env = Environment([])
923
+ ws = WorkingSet([])
924
+ dist = best[req.key] = env.best_match(
925
+ req, ws, installer, replace_conflicting=replace_conflicting
926
+ )
927
+ if dist is None:
928
+ requirers = required_by.get(req, None)
929
+ raise DistributionNotFound(req, requirers)
930
+ to_activate.append(dist)
931
+ if dist not in req:
932
+ # Oops, the "best" so far conflicts with a dependency
933
+ dependent_req = required_by[req]
934
+ raise VersionConflict(dist, req).with_context(dependent_req)
935
+ return dist
936
+
937
+ @overload
938
+ def find_plugins(
939
+ self,
940
+ plugin_env: Environment,
941
+ full_env: Environment | None,
942
+ installer: _InstallerTypeT[_DistributionT],
943
+ fallback: bool = True,
944
+ ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
945
+ @overload
946
+ def find_plugins(
947
+ self,
948
+ plugin_env: Environment,
949
+ full_env: Environment | None = None,
950
+ *,
951
+ installer: _InstallerTypeT[_DistributionT],
952
+ fallback: bool = True,
953
+ ) -> tuple[list[_DistributionT], dict[Distribution, Exception]]: ...
954
+ @overload
955
+ def find_plugins(
956
+ self,
957
+ plugin_env: Environment,
958
+ full_env: Environment | None = None,
959
+ installer: _InstallerType | None = None,
960
+ fallback: bool = True,
961
+ ) -> tuple[list[Distribution], dict[Distribution, Exception]]: ...
962
+ def find_plugins(
963
+ self,
964
+ plugin_env: Environment,
965
+ full_env: Environment | None = None,
966
+ installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
967
+ fallback: bool = True,
968
+ ) -> tuple[
969
+ list[Distribution] | list[_DistributionT],
970
+ dict[Distribution, Exception],
971
+ ]:
972
+ """Find all activatable distributions in `plugin_env`
973
+
974
+ Example usage::
975
+
976
+ distributions, errors = working_set.find_plugins(
977
+ Environment(plugin_dirlist)
978
+ )
979
+ # add plugins+libs to sys.path
980
+ map(working_set.add, distributions)
981
+ # display errors
982
+ print('Could not load', errors)
983
+
984
+ The `plugin_env` should be an ``Environment`` instance that contains
985
+ only distributions that are in the project's "plugin directory" or
986
+ directories. The `full_env`, if supplied, should be an ``Environment``
987
+ contains all currently-available distributions. If `full_env` is not
988
+ supplied, one is created automatically from the ``WorkingSet`` this
989
+ method is called on, which will typically mean that every directory on
990
+ ``sys.path`` will be scanned for distributions.
991
+
992
+ `installer` is a standard installer callback as used by the
993
+ ``resolve()`` method. The `fallback` flag indicates whether we should
994
+ attempt to resolve older versions of a plugin if the newest version
995
+ cannot be resolved.
996
+
997
+ This method returns a 2-tuple: (`distributions`, `error_info`), where
998
+ `distributions` is a list of the distributions found in `plugin_env`
999
+ that were loadable, along with any other distributions that are needed
1000
+ to resolve their dependencies. `error_info` is a dictionary mapping
1001
+ unloadable plugin distributions to an exception instance describing the
1002
+ error that occurred. Usually this will be a ``DistributionNotFound`` or
1003
+ ``VersionConflict`` instance.
1004
+ """
1005
+
1006
+ plugin_projects = list(plugin_env)
1007
+ # scan project names in alphabetic order
1008
+ plugin_projects.sort()
1009
+
1010
+ error_info: dict[Distribution, Exception] = {}
1011
+ distributions: dict[Distribution, Exception | None] = {}
1012
+
1013
+ if full_env is None:
1014
+ env = Environment(self.entries)
1015
+ env += plugin_env
1016
+ else:
1017
+ env = full_env + plugin_env
1018
+
1019
+ shadow_set = self.__class__([])
1020
+ # put all our entries in shadow_set
1021
+ list(map(shadow_set.add, self))
1022
+
1023
+ for project_name in plugin_projects:
1024
+ for dist in plugin_env[project_name]:
1025
+ req = [dist.as_requirement()]
1026
+
1027
+ try:
1028
+ resolvees = shadow_set.resolve(req, env, installer)
1029
+
1030
+ except ResolutionError as v:
1031
+ # save error info
1032
+ error_info[dist] = v
1033
+ if fallback:
1034
+ # try the next older version of project
1035
+ continue
1036
+ else:
1037
+ # give up on this project, keep going
1038
+ break
1039
+
1040
+ else:
1041
+ list(map(shadow_set.add, resolvees))
1042
+ distributions.update(dict.fromkeys(resolvees))
1043
+
1044
+ # success, no need to try any more versions of this project
1045
+ break
1046
+
1047
+ sorted_distributions = list(distributions)
1048
+ sorted_distributions.sort()
1049
+
1050
+ return sorted_distributions, error_info
1051
+
1052
+ def require(self, *requirements: _NestedStr):
1053
+ """Ensure that distributions matching `requirements` are activated
1054
+
1055
+ `requirements` must be a string or a (possibly-nested) sequence
1056
+ thereof, specifying the distributions and versions required. The
1057
+ return value is a sequence of the distributions that needed to be
1058
+ activated to fulfill the requirements; all relevant distributions are
1059
+ included, even if they were already activated in this working set.
1060
+ """
1061
+ needed = self.resolve(parse_requirements(requirements))
1062
+
1063
+ for dist in needed:
1064
+ self.add(dist)
1065
+
1066
+ return needed
1067
+
1068
+ def subscribe(
1069
+ self, callback: Callable[[Distribution], object], existing: bool = True
1070
+ ):
1071
+ """Invoke `callback` for all distributions
1072
+
1073
+ If `existing=True` (default),
1074
+ call on all existing ones, as well.
1075
+ """
1076
+ if callback in self.callbacks:
1077
+ return
1078
+ self.callbacks.append(callback)
1079
+ if not existing:
1080
+ return
1081
+ for dist in self:
1082
+ callback(dist)
1083
+
1084
+ def _added_new(self, dist):
1085
+ for callback in self.callbacks:
1086
+ callback(dist)
1087
+
1088
+ def __getstate__(self):
1089
+ return (
1090
+ self.entries[:],
1091
+ self.entry_keys.copy(),
1092
+ self.by_key.copy(),
1093
+ self.normalized_to_canonical_keys.copy(),
1094
+ self.callbacks[:],
1095
+ )
1096
+
1097
+ def __setstate__(self, e_k_b_n_c):
1098
+ entries, keys, by_key, normalized_to_canonical_keys, callbacks = e_k_b_n_c
1099
+ self.entries = entries[:]
1100
+ self.entry_keys = keys.copy()
1101
+ self.by_key = by_key.copy()
1102
+ self.normalized_to_canonical_keys = normalized_to_canonical_keys.copy()
1103
+ self.callbacks = callbacks[:]
1104
+
1105
+
1106
+ class _ReqExtras(Dict["Requirement", Tuple[str, ...]]):
1107
+ """
1108
+ Map each requirement to the extras that demanded it.
1109
+ """
1110
+
1111
+ def markers_pass(self, req: Requirement, extras: tuple[str, ...] | None = None):
1112
+ """
1113
+ Evaluate markers for req against each extra that
1114
+ demanded it.
1115
+
1116
+ Return False if the req has a marker and fails
1117
+ evaluation. Otherwise, return True.
1118
+ """
1119
+ extra_evals = (
1120
+ req.marker.evaluate({'extra': extra})
1121
+ for extra in self.get(req, ()) + (extras or (None,))
1122
+ )
1123
+ return not req.marker or any(extra_evals)
1124
+
1125
+
1126
+ class Environment:
1127
+ """Searchable snapshot of distributions on a search path"""
1128
+
1129
+ def __init__(
1130
+ self,
1131
+ search_path: Iterable[str] | None = None,
1132
+ platform: str | None = get_supported_platform(),
1133
+ python: str | None = PY_MAJOR,
1134
+ ):
1135
+ """Snapshot distributions available on a search path
1136
+
1137
+ Any distributions found on `search_path` are added to the environment.
1138
+ `search_path` should be a sequence of ``sys.path`` items. If not
1139
+ supplied, ``sys.path`` is used.
1140
+
1141
+ `platform` is an optional string specifying the name of the platform
1142
+ that platform-specific distributions must be compatible with. If
1143
+ unspecified, it defaults to the current platform. `python` is an
1144
+ optional string naming the desired version of Python (e.g. ``'3.6'``);
1145
+ it defaults to the current version.
1146
+
1147
+ You may explicitly set `platform` (and/or `python`) to ``None`` if you
1148
+ wish to map *all* distributions, not just those compatible with the
1149
+ running platform or Python version.
1150
+ """
1151
+ self._distmap = {}
1152
+ self.platform = platform
1153
+ self.python = python
1154
+ self.scan(search_path)
1155
+
1156
+ def can_add(self, dist: Distribution):
1157
+ """Is distribution `dist` acceptable for this environment?
1158
+
1159
+ The distribution must match the platform and python version
1160
+ requirements specified when this environment was created, or False
1161
+ is returned.
1162
+ """
1163
+ py_compat = (
1164
+ self.python is None
1165
+ or dist.py_version is None
1166
+ or dist.py_version == self.python
1167
+ )
1168
+ return py_compat and compatible_platforms(dist.platform, self.platform)
1169
+
1170
+ def remove(self, dist: Distribution):
1171
+ """Remove `dist` from the environment"""
1172
+ self._distmap[dist.key].remove(dist)
1173
+
1174
+ def scan(self, search_path: Iterable[str] | None = None):
1175
+ """Scan `search_path` for distributions usable in this environment
1176
+
1177
+ Any distributions found are added to the environment.
1178
+ `search_path` should be a sequence of ``sys.path`` items. If not
1179
+ supplied, ``sys.path`` is used. Only distributions conforming to
1180
+ the platform/python version defined at initialization are added.
1181
+ """
1182
+ if search_path is None:
1183
+ search_path = sys.path
1184
+
1185
+ for item in search_path:
1186
+ for dist in find_distributions(item):
1187
+ self.add(dist)
1188
+
1189
+ def __getitem__(self, project_name: str) -> list[Distribution]:
1190
+ """Return a newest-to-oldest list of distributions for `project_name`
1191
+
1192
+ Uses case-insensitive `project_name` comparison, assuming all the
1193
+ project's distributions use their project's name converted to all
1194
+ lowercase as their key.
1195
+
1196
+ """
1197
+ distribution_key = project_name.lower()
1198
+ return self._distmap.get(distribution_key, [])
1199
+
1200
+ def add(self, dist: Distribution):
1201
+ """Add `dist` if we ``can_add()`` it and it has not already been added"""
1202
+ if self.can_add(dist) and dist.has_version():
1203
+ dists = self._distmap.setdefault(dist.key, [])
1204
+ if dist not in dists:
1205
+ dists.append(dist)
1206
+ dists.sort(key=operator.attrgetter('hashcmp'), reverse=True)
1207
+
1208
+ @overload
1209
+ def best_match(
1210
+ self,
1211
+ req: Requirement,
1212
+ working_set: WorkingSet,
1213
+ installer: _InstallerTypeT[_DistributionT],
1214
+ replace_conflicting: bool = False,
1215
+ ) -> _DistributionT: ...
1216
+ @overload
1217
+ def best_match(
1218
+ self,
1219
+ req: Requirement,
1220
+ working_set: WorkingSet,
1221
+ installer: _InstallerType | None = None,
1222
+ replace_conflicting: bool = False,
1223
+ ) -> Distribution | None: ...
1224
+ def best_match(
1225
+ self,
1226
+ req: Requirement,
1227
+ working_set: WorkingSet,
1228
+ installer: _InstallerType | None | _InstallerTypeT[_DistributionT] = None,
1229
+ replace_conflicting: bool = False,
1230
+ ) -> Distribution | None:
1231
+ """Find distribution best matching `req` and usable on `working_set`
1232
+
1233
+ This calls the ``find(req)`` method of the `working_set` to see if a
1234
+ suitable distribution is already active. (This may raise
1235
+ ``VersionConflict`` if an unsuitable version of the project is already
1236
+ active in the specified `working_set`.) If a suitable distribution
1237
+ isn't active, this method returns the newest distribution in the
1238
+ environment that meets the ``Requirement`` in `req`. If no suitable
1239
+ distribution is found, and `installer` is supplied, then the result of
1240
+ calling the environment's ``obtain(req, installer)`` method will be
1241
+ returned.
1242
+ """
1243
+ try:
1244
+ dist = working_set.find(req)
1245
+ except VersionConflict:
1246
+ if not replace_conflicting:
1247
+ raise
1248
+ dist = None
1249
+ if dist is not None:
1250
+ return dist
1251
+ for dist in self[req.key]:
1252
+ if dist in req:
1253
+ return dist
1254
+ # try to download/install
1255
+ return self.obtain(req, installer)
1256
+
1257
+ @overload
1258
+ def obtain(
1259
+ self,
1260
+ requirement: Requirement,
1261
+ installer: _InstallerTypeT[_DistributionT],
1262
+ ) -> _DistributionT: ...
1263
+ @overload
1264
+ def obtain(
1265
+ self,
1266
+ requirement: Requirement,
1267
+ installer: Callable[[Requirement], None] | None = None,
1268
+ ) -> None: ...
1269
+ @overload
1270
+ def obtain(
1271
+ self,
1272
+ requirement: Requirement,
1273
+ installer: _InstallerType | None = None,
1274
+ ) -> Distribution | None: ...
1275
+ def obtain(
1276
+ self,
1277
+ requirement: Requirement,
1278
+ installer: Callable[[Requirement], None]
1279
+ | _InstallerType
1280
+ | None
1281
+ | _InstallerTypeT[_DistributionT] = None,
1282
+ ) -> Distribution | None:
1283
+ """Obtain a distribution matching `requirement` (e.g. via download)
1284
+
1285
+ Obtain a distro that matches requirement (e.g. via download). In the
1286
+ base ``Environment`` class, this routine just returns
1287
+ ``installer(requirement)``, unless `installer` is None, in which case
1288
+ None is returned instead. This method is a hook that allows subclasses
1289
+ to attempt other ways of obtaining a distribution before falling back
1290
+ to the `installer` argument."""
1291
+ return installer(requirement) if installer else None
1292
+
1293
+ def __iter__(self) -> Iterator[str]:
1294
+ """Yield the unique project names of the available distributions"""
1295
+ for key in self._distmap.keys():
1296
+ if self[key]:
1297
+ yield key
1298
+
1299
+ def __iadd__(self, other: Distribution | Environment):
1300
+ """In-place addition of a distribution or environment"""
1301
+ if isinstance(other, Distribution):
1302
+ self.add(other)
1303
+ elif isinstance(other, Environment):
1304
+ for project in other:
1305
+ for dist in other[project]:
1306
+ self.add(dist)
1307
+ else:
1308
+ raise TypeError("Can't add %r to environment" % (other,))
1309
+ return self
1310
+
1311
+ def __add__(self, other: Distribution | Environment):
1312
+ """Add an environment or distribution to an environment"""
1313
+ new = self.__class__([], platform=None, python=None)
1314
+ for env in self, other:
1315
+ new += env
1316
+ return new
1317
+
1318
+
1319
+ # XXX backward compatibility
1320
+ AvailableDistributions = Environment
1321
+
1322
+
1323
+ class ExtractionError(RuntimeError):
1324
+ """An error occurred extracting a resource
1325
+
1326
+ The following attributes are available from instances of this exception:
1327
+
1328
+ manager
1329
+ The resource manager that raised this exception
1330
+
1331
+ cache_path
1332
+ The base directory for resource extraction
1333
+
1334
+ original_error
1335
+ The exception instance that caused extraction to fail
1336
+ """
1337
+
1338
+ manager: ResourceManager
1339
+ cache_path: str
1340
+ original_error: BaseException | None
1341
+
1342
+
1343
+ class ResourceManager:
1344
+ """Manage resource extraction and packages"""
1345
+
1346
+ extraction_path: str | None = None
1347
+
1348
+ def __init__(self):
1349
+ self.cached_files = {}
1350
+
1351
+ def resource_exists(self, package_or_requirement: _PkgReqType, resource_name: str):
1352
+ """Does the named resource exist?"""
1353
+ return get_provider(package_or_requirement).has_resource(resource_name)
1354
+
1355
+ def resource_isdir(self, package_or_requirement: _PkgReqType, resource_name: str):
1356
+ """Is the named resource an existing directory?"""
1357
+ return get_provider(package_or_requirement).resource_isdir(resource_name)
1358
+
1359
+ def resource_filename(
1360
+ self, package_or_requirement: _PkgReqType, resource_name: str
1361
+ ):
1362
+ """Return a true filesystem path for specified resource"""
1363
+ return get_provider(package_or_requirement).get_resource_filename(
1364
+ self, resource_name
1365
+ )
1366
+
1367
+ def resource_stream(self, package_or_requirement: _PkgReqType, resource_name: str):
1368
+ """Return a readable file-like object for specified resource"""
1369
+ return get_provider(package_or_requirement).get_resource_stream(
1370
+ self, resource_name
1371
+ )
1372
+
1373
+ def resource_string(
1374
+ self, package_or_requirement: _PkgReqType, resource_name: str
1375
+ ) -> bytes:
1376
+ """Return specified resource as :obj:`bytes`"""
1377
+ return get_provider(package_or_requirement).get_resource_string(
1378
+ self, resource_name
1379
+ )
1380
+
1381
+ def resource_listdir(self, package_or_requirement: _PkgReqType, resource_name: str):
1382
+ """List the contents of the named resource directory"""
1383
+ return get_provider(package_or_requirement).resource_listdir(resource_name)
1384
+
1385
+ def extraction_error(self) -> NoReturn:
1386
+ """Give an error message for problems extracting file(s)"""
1387
+
1388
+ old_exc = sys.exc_info()[1]
1389
+ cache_path = self.extraction_path or get_default_cache()
1390
+
1391
+ tmpl = textwrap.dedent(
1392
+ """
1393
+ Can't extract file(s) to egg cache
1394
+
1395
+ The following error occurred while trying to extract file(s)
1396
+ to the Python egg cache:
1397
+
1398
+ {old_exc}
1399
+
1400
+ The Python egg cache directory is currently set to:
1401
+
1402
+ {cache_path}
1403
+
1404
+ Perhaps your account does not have write access to this directory?
1405
+ You can change the cache directory by setting the PYTHON_EGG_CACHE
1406
+ environment variable to point to an accessible directory.
1407
+ """
1408
+ ).lstrip()
1409
+ err = ExtractionError(tmpl.format(**locals()))
1410
+ err.manager = self
1411
+ err.cache_path = cache_path
1412
+ err.original_error = old_exc
1413
+ raise err
1414
+
1415
+ def get_cache_path(self, archive_name: str, names: Iterable[StrPath] = ()):
1416
+ """Return absolute location in cache for `archive_name` and `names`
1417
+
1418
+ The parent directory of the resulting path will be created if it does
1419
+ not already exist. `archive_name` should be the base filename of the
1420
+ enclosing egg (which may not be the name of the enclosing zipfile!),
1421
+ including its ".egg" extension. `names`, if provided, should be a
1422
+ sequence of path name parts "under" the egg's extraction location.
1423
+
1424
+ This method should only be called by resource providers that need to
1425
+ obtain an extraction location, and only for names they intend to
1426
+ extract, as it tracks the generated names for possible cleanup later.
1427
+ """
1428
+ extract_path = self.extraction_path or get_default_cache()
1429
+ target_path = os.path.join(extract_path, archive_name + '-tmp', *names)
1430
+ try:
1431
+ _bypass_ensure_directory(target_path)
1432
+ except Exception:
1433
+ self.extraction_error()
1434
+
1435
+ self._warn_unsafe_extraction_path(extract_path)
1436
+
1437
+ self.cached_files[target_path] = True
1438
+ return target_path
1439
+
1440
+ @staticmethod
1441
+ def _warn_unsafe_extraction_path(path):
1442
+ """
1443
+ If the default extraction path is overridden and set to an insecure
1444
+ location, such as /tmp, it opens up an opportunity for an attacker to
1445
+ replace an extracted file with an unauthorized payload. Warn the user
1446
+ if a known insecure location is used.
1447
+
1448
+ See Distribute #375 for more details.
1449
+ """
1450
+ if os.name == 'nt' and not path.startswith(os.environ['windir']):
1451
+ # On Windows, permissions are generally restrictive by default
1452
+ # and temp directories are not writable by other users, so
1453
+ # bypass the warning.
1454
+ return
1455
+ mode = os.stat(path).st_mode
1456
+ if mode & stat.S_IWOTH or mode & stat.S_IWGRP:
1457
+ msg = (
1458
+ "Extraction path is writable by group/others "
1459
+ "and vulnerable to attack when "
1460
+ "used with get_resource_filename ({path}). "
1461
+ "Consider a more secure "
1462
+ "location (set with .set_extraction_path or the "
1463
+ "PYTHON_EGG_CACHE environment variable)."
1464
+ ).format(**locals())
1465
+ warnings.warn(msg, UserWarning)
1466
+
1467
+ def postprocess(self, tempname: StrOrBytesPath, filename: StrOrBytesPath):
1468
+ """Perform any platform-specific postprocessing of `tempname`
1469
+
1470
+ This is where Mac header rewrites should be done; other platforms don't
1471
+ have anything special they should do.
1472
+
1473
+ Resource providers should call this method ONLY after successfully
1474
+ extracting a compressed resource. They must NOT call it on resources
1475
+ that are already in the filesystem.
1476
+
1477
+ `tempname` is the current (temporary) name of the file, and `filename`
1478
+ is the name it will be renamed to by the caller after this routine
1479
+ returns.
1480
+ """
1481
+
1482
+ if os.name == 'posix':
1483
+ # Make the resource executable
1484
+ mode = ((os.stat(tempname).st_mode) | 0o555) & 0o7777
1485
+ os.chmod(tempname, mode)
1486
+
1487
+ def set_extraction_path(self, path: str):
1488
+ """Set the base path where resources will be extracted to, if needed.
1489
+
1490
+ If you do not call this routine before any extractions take place, the
1491
+ path defaults to the return value of ``get_default_cache()``. (Which
1492
+ is based on the ``PYTHON_EGG_CACHE`` environment variable, with various
1493
+ platform-specific fallbacks. See that routine's documentation for more
1494
+ details.)
1495
+
1496
+ Resources are extracted to subdirectories of this path based upon
1497
+ information given by the ``IResourceProvider``. You may set this to a
1498
+ temporary directory, but then you must call ``cleanup_resources()`` to
1499
+ delete the extracted files when done. There is no guarantee that
1500
+ ``cleanup_resources()`` will be able to remove all extracted files.
1501
+
1502
+ (Note: you may not change the extraction path for a given resource
1503
+ manager once resources have been extracted, unless you first call
1504
+ ``cleanup_resources()``.)
1505
+ """
1506
+ if self.cached_files:
1507
+ raise ValueError("Can't change extraction path, files already extracted")
1508
+
1509
+ self.extraction_path = path
1510
+
1511
+ def cleanup_resources(self, force: bool = False) -> list[str]:
1512
+ """
1513
+ Delete all extracted resource files and directories, returning a list
1514
+ of the file and directory names that could not be successfully removed.
1515
+ This function does not have any concurrency protection, so it should
1516
+ generally only be called when the extraction path is a temporary
1517
+ directory exclusive to a single process. This method is not
1518
+ automatically called; you must call it explicitly or register it as an
1519
+ ``atexit`` function if you wish to ensure cleanup of a temporary
1520
+ directory used for extractions.
1521
+ """
1522
+ # XXX
1523
+ return []
1524
+
1525
+
1526
+ def get_default_cache() -> str:
1527
+ """
1528
+ Return the ``PYTHON_EGG_CACHE`` environment variable
1529
+ or a platform-relevant user cache dir for an app
1530
+ named "Python-Eggs".
1531
+ """
1532
+ return os.environ.get('PYTHON_EGG_CACHE') or _user_cache_dir(appname='Python-Eggs')
1533
+
1534
+
1535
+ def safe_name(name: str):
1536
+ """Convert an arbitrary string to a standard distribution name
1537
+
1538
+ Any runs of non-alphanumeric/. characters are replaced with a single '-'.
1539
+ """
1540
+ return re.sub('[^A-Za-z0-9.]+', '-', name)
1541
+
1542
+
1543
+ def safe_version(version: str):
1544
+ """
1545
+ Convert an arbitrary string to a standard version string
1546
+ """
1547
+ try:
1548
+ # normalize the version
1549
+ return str(_packaging_version.Version(version))
1550
+ except _packaging_version.InvalidVersion:
1551
+ version = version.replace(' ', '.')
1552
+ return re.sub('[^A-Za-z0-9.]+', '-', version)
1553
+
1554
+
1555
+ def _forgiving_version(version):
1556
+ """Fallback when ``safe_version`` is not safe enough
1557
+ >>> parse_version(_forgiving_version('0.23ubuntu1'))
1558
+ <Version('0.23.dev0+sanitized.ubuntu1')>
1559
+ >>> parse_version(_forgiving_version('0.23-'))
1560
+ <Version('0.23.dev0+sanitized')>
1561
+ >>> parse_version(_forgiving_version('0.-_'))
1562
+ <Version('0.dev0+sanitized')>
1563
+ >>> parse_version(_forgiving_version('42.+?1'))
1564
+ <Version('42.dev0+sanitized.1')>
1565
+ >>> parse_version(_forgiving_version('hello world'))
1566
+ <Version('0.dev0+sanitized.hello.world')>
1567
+ """
1568
+ version = version.replace(' ', '.')
1569
+ match = _PEP440_FALLBACK.search(version)
1570
+ if match:
1571
+ safe = match["safe"]
1572
+ rest = version[len(safe) :]
1573
+ else:
1574
+ safe = "0"
1575
+ rest = version
1576
+ local = f"sanitized.{_safe_segment(rest)}".strip(".")
1577
+ return f"{safe}.dev0+{local}"
1578
+
1579
+
1580
+ def _safe_segment(segment):
1581
+ """Convert an arbitrary string into a safe segment"""
1582
+ segment = re.sub('[^A-Za-z0-9.]+', '-', segment)
1583
+ segment = re.sub('-[^A-Za-z0-9]+', '-', segment)
1584
+ return re.sub(r'\.[^A-Za-z0-9]+', '.', segment).strip(".-")
1585
+
1586
+
1587
+ def safe_extra(extra: str):
1588
+ """Convert an arbitrary string to a standard 'extra' name
1589
+
1590
+ Any runs of non-alphanumeric characters are replaced with a single '_',
1591
+ and the result is always lowercased.
1592
+ """
1593
+ return re.sub('[^A-Za-z0-9.-]+', '_', extra).lower()
1594
+
1595
+
1596
+ def to_filename(name: str):
1597
+ """Convert a project or version name to its filename-escaped form
1598
+
1599
+ Any '-' characters are currently replaced with '_'.
1600
+ """
1601
+ return name.replace('-', '_')
1602
+
1603
+
1604
+ def invalid_marker(text: str):
1605
+ """
1606
+ Validate text as a PEP 508 environment marker; return an exception
1607
+ if invalid or False otherwise.
1608
+ """
1609
+ try:
1610
+ evaluate_marker(text)
1611
+ except SyntaxError as e:
1612
+ e.filename = None
1613
+ e.lineno = None
1614
+ return e
1615
+ return False
1616
+
1617
+
1618
+ def evaluate_marker(text: str, extra: str | None = None) -> bool:
1619
+ """
1620
+ Evaluate a PEP 508 environment marker.
1621
+ Return a boolean indicating the marker result in this environment.
1622
+ Raise SyntaxError if marker is invalid.
1623
+
1624
+ This implementation uses the 'pyparsing' module.
1625
+ """
1626
+ try:
1627
+ marker = _packaging_markers.Marker(text)
1628
+ return marker.evaluate()
1629
+ except _packaging_markers.InvalidMarker as e:
1630
+ raise SyntaxError(e) from e
1631
+
1632
+
1633
+ class NullProvider:
1634
+ """Try to implement resources and metadata for arbitrary PEP 302 loaders"""
1635
+
1636
+ egg_name: str | None = None
1637
+ egg_info: str | None = None
1638
+ loader: _LoaderProtocol | None = None
1639
+
1640
+ def __init__(self, module: _ModuleLike):
1641
+ self.loader = getattr(module, '__loader__', None)
1642
+ self.module_path = os.path.dirname(getattr(module, '__file__', ''))
1643
+
1644
+ def get_resource_filename(self, manager: ResourceManager, resource_name: str):
1645
+ return self._fn(self.module_path, resource_name)
1646
+
1647
+ def get_resource_stream(self, manager: ResourceManager, resource_name: str):
1648
+ return io.BytesIO(self.get_resource_string(manager, resource_name))
1649
+
1650
+ def get_resource_string(
1651
+ self, manager: ResourceManager, resource_name: str
1652
+ ) -> bytes:
1653
+ return self._get(self._fn(self.module_path, resource_name))
1654
+
1655
+ def has_resource(self, resource_name: str):
1656
+ return self._has(self._fn(self.module_path, resource_name))
1657
+
1658
+ def _get_metadata_path(self, name):
1659
+ return self._fn(self.egg_info, name)
1660
+
1661
+ def has_metadata(self, name: str) -> bool:
1662
+ if not self.egg_info:
1663
+ return False
1664
+
1665
+ path = self._get_metadata_path(name)
1666
+ return self._has(path)
1667
+
1668
+ def get_metadata(self, name: str):
1669
+ if not self.egg_info:
1670
+ return ""
1671
+ path = self._get_metadata_path(name)
1672
+ value = self._get(path)
1673
+ try:
1674
+ return value.decode('utf-8')
1675
+ except UnicodeDecodeError as exc:
1676
+ # Include the path in the error message to simplify
1677
+ # troubleshooting, and without changing the exception type.
1678
+ exc.reason += ' in {} file at path: {}'.format(name, path)
1679
+ raise
1680
+
1681
+ def get_metadata_lines(self, name: str) -> Iterator[str]:
1682
+ return yield_lines(self.get_metadata(name))
1683
+
1684
+ def resource_isdir(self, resource_name: str):
1685
+ return self._isdir(self._fn(self.module_path, resource_name))
1686
+
1687
+ def metadata_isdir(self, name: str) -> bool:
1688
+ return bool(self.egg_info and self._isdir(self._fn(self.egg_info, name)))
1689
+
1690
+ def resource_listdir(self, resource_name: str):
1691
+ return self._listdir(self._fn(self.module_path, resource_name))
1692
+
1693
+ def metadata_listdir(self, name: str) -> list[str]:
1694
+ if self.egg_info:
1695
+ return self._listdir(self._fn(self.egg_info, name))
1696
+ return []
1697
+
1698
+ def run_script(self, script_name: str, namespace: dict[str, Any]):
1699
+ script = 'scripts/' + script_name
1700
+ if not self.has_metadata(script):
1701
+ raise ResolutionError(
1702
+ "Script {script!r} not found in metadata at {self.egg_info!r}".format(
1703
+ **locals()
1704
+ ),
1705
+ )
1706
+
1707
+ script_text = self.get_metadata(script).replace('\r\n', '\n')
1708
+ script_text = script_text.replace('\r', '\n')
1709
+ script_filename = self._fn(self.egg_info, script)
1710
+ namespace['__file__'] = script_filename
1711
+ if os.path.exists(script_filename):
1712
+ source = _read_utf8_with_fallback(script_filename)
1713
+ code = compile(source, script_filename, 'exec')
1714
+ exec(code, namespace, namespace)
1715
+ else:
1716
+ from linecache import cache
1717
+
1718
+ cache[script_filename] = (
1719
+ len(script_text),
1720
+ 0,
1721
+ script_text.split('\n'),
1722
+ script_filename,
1723
+ )
1724
+ script_code = compile(script_text, script_filename, 'exec')
1725
+ exec(script_code, namespace, namespace)
1726
+
1727
+ def _has(self, path) -> bool:
1728
+ raise NotImplementedError(
1729
+ "Can't perform this operation for unregistered loader type"
1730
+ )
1731
+
1732
+ def _isdir(self, path) -> bool:
1733
+ raise NotImplementedError(
1734
+ "Can't perform this operation for unregistered loader type"
1735
+ )
1736
+
1737
+ def _listdir(self, path) -> list[str]:
1738
+ raise NotImplementedError(
1739
+ "Can't perform this operation for unregistered loader type"
1740
+ )
1741
+
1742
+ def _fn(self, base: str | None, resource_name: str):
1743
+ if base is None:
1744
+ raise TypeError(
1745
+ "`base` parameter in `_fn` is `None`. Either override this method or check the parameter first."
1746
+ )
1747
+ self._validate_resource_path(resource_name)
1748
+ if resource_name:
1749
+ return os.path.join(base, *resource_name.split('/'))
1750
+ return base
1751
+
1752
+ @staticmethod
1753
+ def _validate_resource_path(path):
1754
+ """
1755
+ Validate the resource paths according to the docs.
1756
+ https://setuptools.pypa.io/en/latest/pkg_resources.html#basic-resource-access
1757
+
1758
+ >>> warned = getfixture('recwarn')
1759
+ >>> warnings.simplefilter('always')
1760
+ >>> vrp = NullProvider._validate_resource_path
1761
+ >>> vrp('foo/bar.txt')
1762
+ >>> bool(warned)
1763
+ False
1764
+ >>> vrp('../foo/bar.txt')
1765
+ >>> bool(warned)
1766
+ True
1767
+ >>> warned.clear()
1768
+ >>> vrp('/foo/bar.txt')
1769
+ >>> bool(warned)
1770
+ True
1771
+ >>> vrp('foo/../../bar.txt')
1772
+ >>> bool(warned)
1773
+ True
1774
+ >>> warned.clear()
1775
+ >>> vrp('foo/f../bar.txt')
1776
+ >>> bool(warned)
1777
+ False
1778
+
1779
+ Windows path separators are straight-up disallowed.
1780
+ >>> vrp(r'\\foo/bar.txt')
1781
+ Traceback (most recent call last):
1782
+ ...
1783
+ ValueError: Use of .. or absolute path in a resource path \
1784
+ is not allowed.
1785
+
1786
+ >>> vrp(r'C:\\foo/bar.txt')
1787
+ Traceback (most recent call last):
1788
+ ...
1789
+ ValueError: Use of .. or absolute path in a resource path \
1790
+ is not allowed.
1791
+
1792
+ Blank values are allowed
1793
+
1794
+ >>> vrp('')
1795
+ >>> bool(warned)
1796
+ False
1797
+
1798
+ Non-string values are not.
1799
+
1800
+ >>> vrp(None)
1801
+ Traceback (most recent call last):
1802
+ ...
1803
+ AttributeError: ...
1804
+ """
1805
+ invalid = (
1806
+ os.path.pardir in path.split(posixpath.sep)
1807
+ or posixpath.isabs(path)
1808
+ or ntpath.isabs(path)
1809
+ or path.startswith("\\")
1810
+ )
1811
+ if not invalid:
1812
+ return
1813
+
1814
+ msg = "Use of .. or absolute path in a resource path is not allowed."
1815
+
1816
+ # Aggressively disallow Windows absolute paths
1817
+ if (path.startswith("\\") or ntpath.isabs(path)) and not posixpath.isabs(path):
1818
+ raise ValueError(msg)
1819
+
1820
+ # for compatibility, warn; in future
1821
+ # raise ValueError(msg)
1822
+ issue_warning(
1823
+ msg[:-1] + " and will raise exceptions in a future release.",
1824
+ DeprecationWarning,
1825
+ )
1826
+
1827
+ def _get(self, path) -> bytes:
1828
+ if hasattr(self.loader, 'get_data') and self.loader:
1829
+ # Already checked get_data exists
1830
+ return self.loader.get_data(path) # type: ignore[attr-defined]
1831
+ raise NotImplementedError(
1832
+ "Can't perform this operation for loaders without 'get_data()'"
1833
+ )
1834
+
1835
+
1836
+ register_loader_type(object, NullProvider)
1837
+
1838
+
1839
+ def _parents(path):
1840
+ """
1841
+ yield all parents of path including path
1842
+ """
1843
+ last = None
1844
+ while path != last:
1845
+ yield path
1846
+ last = path
1847
+ path, _ = os.path.split(path)
1848
+
1849
+
1850
+ class EggProvider(NullProvider):
1851
+ """Provider based on a virtual filesystem"""
1852
+
1853
+ def __init__(self, module: _ModuleLike):
1854
+ super().__init__(module)
1855
+ self._setup_prefix()
1856
+
1857
+ def _setup_prefix(self):
1858
+ # Assume that metadata may be nested inside a "basket"
1859
+ # of multiple eggs and use module_path instead of .archive.
1860
+ eggs = filter(_is_egg_path, _parents(self.module_path))
1861
+ egg = next(eggs, None)
1862
+ egg and self._set_egg(egg)
1863
+
1864
+ def _set_egg(self, path: str):
1865
+ self.egg_name = os.path.basename(path)
1866
+ self.egg_info = os.path.join(path, 'EGG-INFO')
1867
+ self.egg_root = path
1868
+
1869
+
1870
+ class DefaultProvider(EggProvider):
1871
+ """Provides access to package resources in the filesystem"""
1872
+
1873
+ def _has(self, path) -> bool:
1874
+ return os.path.exists(path)
1875
+
1876
+ def _isdir(self, path) -> bool:
1877
+ return os.path.isdir(path)
1878
+
1879
+ def _listdir(self, path):
1880
+ return os.listdir(path)
1881
+
1882
+ def get_resource_stream(self, manager: object, resource_name: str):
1883
+ return open(self._fn(self.module_path, resource_name), 'rb')
1884
+
1885
+ def _get(self, path) -> bytes:
1886
+ with open(path, 'rb') as stream:
1887
+ return stream.read()
1888
+
1889
+ @classmethod
1890
+ def _register(cls):
1891
+ loader_names = (
1892
+ 'SourceFileLoader',
1893
+ 'SourcelessFileLoader',
1894
+ )
1895
+ for name in loader_names:
1896
+ loader_cls = getattr(importlib.machinery, name, type(None))
1897
+ register_loader_type(loader_cls, cls)
1898
+
1899
+
1900
+ DefaultProvider._register()
1901
+
1902
+
1903
+ class EmptyProvider(NullProvider):
1904
+ """Provider that returns nothing for all requests"""
1905
+
1906
+ # A special case, we don't want all Providers inheriting from NullProvider to have a potentially None module_path
1907
+ module_path: str | None = None # type: ignore[assignment]
1908
+
1909
+ _isdir = _has = lambda self, path: False
1910
+
1911
+ def _get(self, path) -> bytes:
1912
+ return b''
1913
+
1914
+ def _listdir(self, path):
1915
+ return []
1916
+
1917
+ def __init__(self):
1918
+ pass
1919
+
1920
+
1921
+ empty_provider = EmptyProvider()
1922
+
1923
+
1924
+ class ZipManifests(Dict[str, "MemoizedZipManifests.manifest_mod"]):
1925
+ """
1926
+ zip manifest builder
1927
+ """
1928
+
1929
+ # `path` could be `StrPath | IO[bytes]` but that violates the LSP for `MemoizedZipManifests.load`
1930
+ @classmethod
1931
+ def build(cls, path: str):
1932
+ """
1933
+ Build a dictionary similar to the zipimport directory
1934
+ caches, except instead of tuples, store ZipInfo objects.
1935
+
1936
+ Use a platform-specific path separator (os.sep) for the path keys
1937
+ for compatibility with pypy on Windows.
1938
+ """
1939
+ with zipfile.ZipFile(path) as zfile:
1940
+ items = (
1941
+ (
1942
+ name.replace('/', os.sep),
1943
+ zfile.getinfo(name),
1944
+ )
1945
+ for name in zfile.namelist()
1946
+ )
1947
+ return dict(items)
1948
+
1949
+ load = build
1950
+
1951
+
1952
+ class MemoizedZipManifests(ZipManifests):
1953
+ """
1954
+ Memoized zipfile manifests.
1955
+ """
1956
+
1957
+ class manifest_mod(NamedTuple):
1958
+ manifest: dict[str, zipfile.ZipInfo]
1959
+ mtime: float
1960
+
1961
+ def load(self, path: str) -> dict[str, zipfile.ZipInfo]: # type: ignore[override] # ZipManifests.load is a classmethod
1962
+ """
1963
+ Load a manifest at path or return a suitable manifest already loaded.
1964
+ """
1965
+ path = os.path.normpath(path)
1966
+ mtime = os.stat(path).st_mtime
1967
+
1968
+ if path not in self or self[path].mtime != mtime:
1969
+ manifest = self.build(path)
1970
+ self[path] = self.manifest_mod(manifest, mtime)
1971
+
1972
+ return self[path].manifest
1973
+
1974
+
1975
+ class ZipProvider(EggProvider):
1976
+ """Resource support for zips and eggs"""
1977
+
1978
+ eagers: list[str] | None = None
1979
+ _zip_manifests = MemoizedZipManifests()
1980
+ # ZipProvider's loader should always be a zipimporter or equivalent
1981
+ loader: zipimport.zipimporter
1982
+
1983
+ def __init__(self, module: _ZipLoaderModule):
1984
+ super().__init__(module)
1985
+ self.zip_pre = self.loader.archive + os.sep
1986
+
1987
+ def _zipinfo_name(self, fspath):
1988
+ # Convert a virtual filename (full path to file) into a zipfile subpath
1989
+ # usable with the zipimport directory cache for our target archive
1990
+ fspath = fspath.rstrip(os.sep)
1991
+ if fspath == self.loader.archive:
1992
+ return ''
1993
+ if fspath.startswith(self.zip_pre):
1994
+ return fspath[len(self.zip_pre) :]
1995
+ raise AssertionError("%s is not a subpath of %s" % (fspath, self.zip_pre))
1996
+
1997
+ def _parts(self, zip_path):
1998
+ # Convert a zipfile subpath into an egg-relative path part list.
1999
+ # pseudo-fs path
2000
+ fspath = self.zip_pre + zip_path
2001
+ if fspath.startswith(self.egg_root + os.sep):
2002
+ return fspath[len(self.egg_root) + 1 :].split(os.sep)
2003
+ raise AssertionError("%s is not a subpath of %s" % (fspath, self.egg_root))
2004
+
2005
+ @property
2006
+ def zipinfo(self):
2007
+ return self._zip_manifests.load(self.loader.archive)
2008
+
2009
+ def get_resource_filename(self, manager: ResourceManager, resource_name: str):
2010
+ if not self.egg_name:
2011
+ raise NotImplementedError(
2012
+ "resource_filename() only supported for .egg, not .zip"
2013
+ )
2014
+ # no need to lock for extraction, since we use temp names
2015
+ zip_path = self._resource_to_zip(resource_name)
2016
+ eagers = self._get_eager_resources()
2017
+ if '/'.join(self._parts(zip_path)) in eagers:
2018
+ for name in eagers:
2019
+ self._extract_resource(manager, self._eager_to_zip(name))
2020
+ return self._extract_resource(manager, zip_path)
2021
+
2022
+ @staticmethod
2023
+ def _get_date_and_size(zip_stat):
2024
+ size = zip_stat.file_size
2025
+ # ymdhms+wday, yday, dst
2026
+ date_time = zip_stat.date_time + (0, 0, -1)
2027
+ # 1980 offset already done
2028
+ timestamp = time.mktime(date_time)
2029
+ return timestamp, size
2030
+
2031
+ # FIXME: 'ZipProvider._extract_resource' is too complex (12)
2032
+ def _extract_resource(self, manager: ResourceManager, zip_path) -> str: # noqa: C901
2033
+ if zip_path in self._index():
2034
+ for name in self._index()[zip_path]:
2035
+ last = self._extract_resource(manager, os.path.join(zip_path, name))
2036
+ # return the extracted directory name
2037
+ return os.path.dirname(last)
2038
+
2039
+ timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
2040
+
2041
+ if not WRITE_SUPPORT:
2042
+ raise OSError(
2043
+ '"os.rename" and "os.unlink" are not supported on this platform'
2044
+ )
2045
+ try:
2046
+ if not self.egg_name:
2047
+ raise OSError(
2048
+ '"egg_name" is empty. This likely means no egg could be found from the "module_path".'
2049
+ )
2050
+ real_path = manager.get_cache_path(self.egg_name, self._parts(zip_path))
2051
+
2052
+ if self._is_current(real_path, zip_path):
2053
+ return real_path
2054
+
2055
+ outf, tmpnam = _mkstemp(
2056
+ ".$extract",
2057
+ dir=os.path.dirname(real_path),
2058
+ )
2059
+ os.write(outf, self.loader.get_data(zip_path))
2060
+ os.close(outf)
2061
+ utime(tmpnam, (timestamp, timestamp))
2062
+ manager.postprocess(tmpnam, real_path)
2063
+
2064
+ try:
2065
+ rename(tmpnam, real_path)
2066
+
2067
+ except OSError:
2068
+ if os.path.isfile(real_path):
2069
+ if self._is_current(real_path, zip_path):
2070
+ # the file became current since it was checked above,
2071
+ # so proceed.
2072
+ return real_path
2073
+ # Windows, del old file and retry
2074
+ elif os.name == 'nt':
2075
+ unlink(real_path)
2076
+ rename(tmpnam, real_path)
2077
+ return real_path
2078
+ raise
2079
+
2080
+ except OSError:
2081
+ # report a user-friendly error
2082
+ manager.extraction_error()
2083
+
2084
+ return real_path
2085
+
2086
+ def _is_current(self, file_path, zip_path):
2087
+ """
2088
+ Return True if the file_path is current for this zip_path
2089
+ """
2090
+ timestamp, size = self._get_date_and_size(self.zipinfo[zip_path])
2091
+ if not os.path.isfile(file_path):
2092
+ return False
2093
+ stat = os.stat(file_path)
2094
+ if stat.st_size != size or stat.st_mtime != timestamp:
2095
+ return False
2096
+ # check that the contents match
2097
+ zip_contents = self.loader.get_data(zip_path)
2098
+ with open(file_path, 'rb') as f:
2099
+ file_contents = f.read()
2100
+ return zip_contents == file_contents
2101
+
2102
+ def _get_eager_resources(self):
2103
+ if self.eagers is None:
2104
+ eagers = []
2105
+ for name in ('native_libs.txt', 'eager_resources.txt'):
2106
+ if self.has_metadata(name):
2107
+ eagers.extend(self.get_metadata_lines(name))
2108
+ self.eagers = eagers
2109
+ return self.eagers
2110
+
2111
+ def _index(self):
2112
+ try:
2113
+ return self._dirindex
2114
+ except AttributeError:
2115
+ ind = {}
2116
+ for path in self.zipinfo:
2117
+ parts = path.split(os.sep)
2118
+ while parts:
2119
+ parent = os.sep.join(parts[:-1])
2120
+ if parent in ind:
2121
+ ind[parent].append(parts[-1])
2122
+ break
2123
+ else:
2124
+ ind[parent] = [parts.pop()]
2125
+ self._dirindex = ind
2126
+ return ind
2127
+
2128
+ def _has(self, fspath) -> bool:
2129
+ zip_path = self._zipinfo_name(fspath)
2130
+ return zip_path in self.zipinfo or zip_path in self._index()
2131
+
2132
+ def _isdir(self, fspath) -> bool:
2133
+ return self._zipinfo_name(fspath) in self._index()
2134
+
2135
+ def _listdir(self, fspath):
2136
+ return list(self._index().get(self._zipinfo_name(fspath), ()))
2137
+
2138
+ def _eager_to_zip(self, resource_name: str):
2139
+ return self._zipinfo_name(self._fn(self.egg_root, resource_name))
2140
+
2141
+ def _resource_to_zip(self, resource_name: str):
2142
+ return self._zipinfo_name(self._fn(self.module_path, resource_name))
2143
+
2144
+
2145
+ register_loader_type(zipimport.zipimporter, ZipProvider)
2146
+
2147
+
2148
+ class FileMetadata(EmptyProvider):
2149
+ """Metadata handler for standalone PKG-INFO files
2150
+
2151
+ Usage::
2152
+
2153
+ metadata = FileMetadata("/path/to/PKG-INFO")
2154
+
2155
+ This provider rejects all data and metadata requests except for PKG-INFO,
2156
+ which is treated as existing, and will be the contents of the file at
2157
+ the provided location.
2158
+ """
2159
+
2160
+ def __init__(self, path: StrPath):
2161
+ self.path = path
2162
+
2163
+ def _get_metadata_path(self, name):
2164
+ return self.path
2165
+
2166
+ def has_metadata(self, name: str) -> bool:
2167
+ return name == 'PKG-INFO' and os.path.isfile(self.path)
2168
+
2169
+ def get_metadata(self, name: str):
2170
+ if name != 'PKG-INFO':
2171
+ raise KeyError("No metadata except PKG-INFO is available")
2172
+
2173
+ with open(self.path, encoding='utf-8', errors="replace") as f:
2174
+ metadata = f.read()
2175
+ self._warn_on_replacement(metadata)
2176
+ return metadata
2177
+
2178
+ def _warn_on_replacement(self, metadata):
2179
+ replacement_char = '�'
2180
+ if replacement_char in metadata:
2181
+ tmpl = "{self.path} could not be properly decoded in UTF-8"
2182
+ msg = tmpl.format(**locals())
2183
+ warnings.warn(msg)
2184
+
2185
+ def get_metadata_lines(self, name: str) -> Iterator[str]:
2186
+ return yield_lines(self.get_metadata(name))
2187
+
2188
+
2189
+ class PathMetadata(DefaultProvider):
2190
+ """Metadata provider for egg directories
2191
+
2192
+ Usage::
2193
+
2194
+ # Development eggs:
2195
+
2196
+ egg_info = "/path/to/PackageName.egg-info"
2197
+ base_dir = os.path.dirname(egg_info)
2198
+ metadata = PathMetadata(base_dir, egg_info)
2199
+ dist_name = os.path.splitext(os.path.basename(egg_info))[0]
2200
+ dist = Distribution(basedir, project_name=dist_name, metadata=metadata)
2201
+
2202
+ # Unpacked egg directories:
2203
+
2204
+ egg_path = "/path/to/PackageName-ver-pyver-etc.egg"
2205
+ metadata = PathMetadata(egg_path, os.path.join(egg_path,'EGG-INFO'))
2206
+ dist = Distribution.from_filename(egg_path, metadata=metadata)
2207
+ """
2208
+
2209
+ def __init__(self, path: str, egg_info: str):
2210
+ self.module_path = path
2211
+ self.egg_info = egg_info
2212
+
2213
+
2214
+ class EggMetadata(ZipProvider):
2215
+ """Metadata provider for .egg files"""
2216
+
2217
+ def __init__(self, importer: zipimport.zipimporter):
2218
+ """Create a metadata provider from a zipimporter"""
2219
+
2220
+ self.zip_pre = importer.archive + os.sep
2221
+ self.loader = importer
2222
+ if importer.prefix:
2223
+ self.module_path = os.path.join(importer.archive, importer.prefix)
2224
+ else:
2225
+ self.module_path = importer.archive
2226
+ self._setup_prefix()
2227
+
2228
+
2229
+ _distribution_finders: dict[type, _DistFinderType[Any]] = _declare_state(
2230
+ 'dict', '_distribution_finders', {}
2231
+ )
2232
+
2233
+
2234
+ def register_finder(importer_type: type[_T], distribution_finder: _DistFinderType[_T]):
2235
+ """Register `distribution_finder` to find distributions in sys.path items
2236
+
2237
+ `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
2238
+ handler), and `distribution_finder` is a callable that, passed a path
2239
+ item and the importer instance, yields ``Distribution`` instances found on
2240
+ that path item. See ``pkg_resources.find_on_path`` for an example."""
2241
+ _distribution_finders[importer_type] = distribution_finder
2242
+
2243
+
2244
+ def find_distributions(path_item: str, only: bool = False):
2245
+ """Yield distributions accessible via `path_item`"""
2246
+ importer = get_importer(path_item)
2247
+ finder = _find_adapter(_distribution_finders, importer)
2248
+ return finder(importer, path_item, only)
2249
+
2250
+
2251
+ def find_eggs_in_zip(
2252
+ importer: zipimport.zipimporter, path_item: str, only: bool = False
2253
+ ) -> Iterator[Distribution]:
2254
+ """
2255
+ Find eggs in zip files; possibly multiple nested eggs.
2256
+ """
2257
+ if importer.archive.endswith('.whl'):
2258
+ # wheels are not supported with this finder
2259
+ # they don't have PKG-INFO metadata, and won't ever contain eggs
2260
+ return
2261
+ metadata = EggMetadata(importer)
2262
+ if metadata.has_metadata('PKG-INFO'):
2263
+ yield Distribution.from_filename(path_item, metadata=metadata)
2264
+ if only:
2265
+ # don't yield nested distros
2266
+ return
2267
+ for subitem in metadata.resource_listdir(''):
2268
+ if _is_egg_path(subitem):
2269
+ subpath = os.path.join(path_item, subitem)
2270
+ dists = find_eggs_in_zip(zipimport.zipimporter(subpath), subpath)
2271
+ yield from dists
2272
+ elif subitem.lower().endswith(('.dist-info', '.egg-info')):
2273
+ subpath = os.path.join(path_item, subitem)
2274
+ submeta = EggMetadata(zipimport.zipimporter(subpath))
2275
+ submeta.egg_info = subpath
2276
+ yield Distribution.from_location(path_item, subitem, submeta)
2277
+
2278
+
2279
+ register_finder(zipimport.zipimporter, find_eggs_in_zip)
2280
+
2281
+
2282
+ def find_nothing(
2283
+ importer: object | None, path_item: str | None, only: bool | None = False
2284
+ ):
2285
+ return ()
2286
+
2287
+
2288
+ register_finder(object, find_nothing)
2289
+
2290
+
2291
+ def find_on_path(importer: object | None, path_item, only=False):
2292
+ """Yield distributions accessible on a sys.path directory"""
2293
+ path_item = _normalize_cached(path_item)
2294
+
2295
+ if _is_unpacked_egg(path_item):
2296
+ yield Distribution.from_filename(
2297
+ path_item,
2298
+ metadata=PathMetadata(path_item, os.path.join(path_item, 'EGG-INFO')),
2299
+ )
2300
+ return
2301
+
2302
+ entries = (os.path.join(path_item, child) for child in safe_listdir(path_item))
2303
+
2304
+ # scan for .egg and .egg-info in directory
2305
+ for entry in sorted(entries):
2306
+ fullpath = os.path.join(path_item, entry)
2307
+ factory = dist_factory(path_item, entry, only)
2308
+ yield from factory(fullpath)
2309
+
2310
+
2311
+ def dist_factory(path_item, entry, only):
2312
+ """Return a dist_factory for the given entry."""
2313
+ lower = entry.lower()
2314
+ is_egg_info = lower.endswith('.egg-info')
2315
+ is_dist_info = lower.endswith('.dist-info') and os.path.isdir(
2316
+ os.path.join(path_item, entry)
2317
+ )
2318
+ is_meta = is_egg_info or is_dist_info
2319
+ return (
2320
+ distributions_from_metadata
2321
+ if is_meta
2322
+ else find_distributions
2323
+ if not only and _is_egg_path(entry)
2324
+ else resolve_egg_link
2325
+ if not only and lower.endswith('.egg-link')
2326
+ else NoDists()
2327
+ )
2328
+
2329
+
2330
+ class NoDists:
2331
+ """
2332
+ >>> bool(NoDists())
2333
+ False
2334
+
2335
+ >>> list(NoDists()('anything'))
2336
+ []
2337
+ """
2338
+
2339
+ def __bool__(self):
2340
+ return False
2341
+
2342
+ def __call__(self, fullpath):
2343
+ return iter(())
2344
+
2345
+
2346
+ def safe_listdir(path: StrOrBytesPath):
2347
+ """
2348
+ Attempt to list contents of path, but suppress some exceptions.
2349
+ """
2350
+ try:
2351
+ return os.listdir(path)
2352
+ except (PermissionError, NotADirectoryError):
2353
+ pass
2354
+ except OSError as e:
2355
+ # Ignore the directory if does not exist, not a directory or
2356
+ # permission denied
2357
+ if e.errno not in (errno.ENOTDIR, errno.EACCES, errno.ENOENT):
2358
+ raise
2359
+ return ()
2360
+
2361
+
2362
+ def distributions_from_metadata(path: str):
2363
+ root = os.path.dirname(path)
2364
+ if os.path.isdir(path):
2365
+ if len(os.listdir(path)) == 0:
2366
+ # empty metadata dir; skip
2367
+ return
2368
+ metadata: _MetadataType = PathMetadata(root, path)
2369
+ else:
2370
+ metadata = FileMetadata(path)
2371
+ entry = os.path.basename(path)
2372
+ yield Distribution.from_location(
2373
+ root,
2374
+ entry,
2375
+ metadata,
2376
+ precedence=DEVELOP_DIST,
2377
+ )
2378
+
2379
+
2380
+ def non_empty_lines(path):
2381
+ """
2382
+ Yield non-empty lines from file at path
2383
+ """
2384
+ for line in _read_utf8_with_fallback(path).splitlines():
2385
+ line = line.strip()
2386
+ if line:
2387
+ yield line
2388
+
2389
+
2390
+ def resolve_egg_link(path):
2391
+ """
2392
+ Given a path to an .egg-link, resolve distributions
2393
+ present in the referenced path.
2394
+ """
2395
+ referenced_paths = non_empty_lines(path)
2396
+ resolved_paths = (
2397
+ os.path.join(os.path.dirname(path), ref) for ref in referenced_paths
2398
+ )
2399
+ dist_groups = map(find_distributions, resolved_paths)
2400
+ return next(dist_groups, ())
2401
+
2402
+
2403
+ if hasattr(pkgutil, 'ImpImporter'):
2404
+ register_finder(pkgutil.ImpImporter, find_on_path)
2405
+
2406
+ register_finder(importlib.machinery.FileFinder, find_on_path)
2407
+
2408
+ _namespace_handlers: dict[type, _NSHandlerType[Any]] = _declare_state(
2409
+ 'dict', '_namespace_handlers', {}
2410
+ )
2411
+ _namespace_packages: dict[str | None, list[str]] = _declare_state(
2412
+ 'dict', '_namespace_packages', {}
2413
+ )
2414
+
2415
+
2416
+ def register_namespace_handler(
2417
+ importer_type: type[_T], namespace_handler: _NSHandlerType[_T]
2418
+ ):
2419
+ """Register `namespace_handler` to declare namespace packages
2420
+
2421
+ `importer_type` is the type or class of a PEP 302 "Importer" (sys.path item
2422
+ handler), and `namespace_handler` is a callable like this::
2423
+
2424
+ def namespace_handler(importer, path_entry, moduleName, module):
2425
+ # return a path_entry to use for child packages
2426
+
2427
+ Namespace handlers are only called if the importer object has already
2428
+ agreed that it can handle the relevant path item, and they should only
2429
+ return a subpath if the module __path__ does not already contain an
2430
+ equivalent subpath. For an example namespace handler, see
2431
+ ``pkg_resources.file_ns_handler``.
2432
+ """
2433
+ _namespace_handlers[importer_type] = namespace_handler
2434
+
2435
+
2436
+ def _handle_ns(packageName, path_item):
2437
+ """Ensure that named package includes a subpath of path_item (if needed)"""
2438
+
2439
+ importer = get_importer(path_item)
2440
+ if importer is None:
2441
+ return None
2442
+
2443
+ # use find_spec (PEP 451) and fall-back to find_module (PEP 302)
2444
+ try:
2445
+ spec = importer.find_spec(packageName)
2446
+ except AttributeError:
2447
+ # capture warnings due to #1111
2448
+ with warnings.catch_warnings():
2449
+ warnings.simplefilter("ignore")
2450
+ loader = importer.find_module(packageName)
2451
+ else:
2452
+ loader = spec.loader if spec else None
2453
+
2454
+ if loader is None:
2455
+ return None
2456
+ module = sys.modules.get(packageName)
2457
+ if module is None:
2458
+ module = sys.modules[packageName] = types.ModuleType(packageName)
2459
+ module.__path__ = []
2460
+ _set_parent_ns(packageName)
2461
+ elif not hasattr(module, '__path__'):
2462
+ raise TypeError("Not a package:", packageName)
2463
+ handler = _find_adapter(_namespace_handlers, importer)
2464
+ subpath = handler(importer, path_item, packageName, module)
2465
+ if subpath is not None:
2466
+ path = module.__path__
2467
+ path.append(subpath)
2468
+ importlib.import_module(packageName)
2469
+ _rebuild_mod_path(path, packageName, module)
2470
+ return subpath
2471
+
2472
+
2473
+ def _rebuild_mod_path(orig_path, package_name, module: types.ModuleType):
2474
+ """
2475
+ Rebuild module.__path__ ensuring that all entries are ordered
2476
+ corresponding to their sys.path order
2477
+ """
2478
+ sys_path = [_normalize_cached(p) for p in sys.path]
2479
+
2480
+ def safe_sys_path_index(entry):
2481
+ """
2482
+ Workaround for #520 and #513.
2483
+ """
2484
+ try:
2485
+ return sys_path.index(entry)
2486
+ except ValueError:
2487
+ return float('inf')
2488
+
2489
+ def position_in_sys_path(path):
2490
+ """
2491
+ Return the ordinal of the path based on its position in sys.path
2492
+ """
2493
+ path_parts = path.split(os.sep)
2494
+ module_parts = package_name.count('.') + 1
2495
+ parts = path_parts[:-module_parts]
2496
+ return safe_sys_path_index(_normalize_cached(os.sep.join(parts)))
2497
+
2498
+ new_path = sorted(orig_path, key=position_in_sys_path)
2499
+ new_path = [_normalize_cached(p) for p in new_path]
2500
+
2501
+ if isinstance(module.__path__, list):
2502
+ module.__path__[:] = new_path
2503
+ else:
2504
+ module.__path__ = new_path
2505
+
2506
+
2507
+ def declare_namespace(packageName: str):
2508
+ """Declare that package 'packageName' is a namespace package"""
2509
+
2510
+ msg = (
2511
+ f"Deprecated call to `pkg_resources.declare_namespace({packageName!r})`.\n"
2512
+ "Implementing implicit namespace packages (as specified in PEP 420) "
2513
+ "is preferred to `pkg_resources.declare_namespace`. "
2514
+ "See https://setuptools.pypa.io/en/latest/references/"
2515
+ "keywords.html#keyword-namespace-packages"
2516
+ )
2517
+ warnings.warn(msg, DeprecationWarning, stacklevel=2)
2518
+
2519
+ _imp.acquire_lock()
2520
+ try:
2521
+ if packageName in _namespace_packages:
2522
+ return
2523
+
2524
+ path: MutableSequence[str] = sys.path
2525
+ parent, _, _ = packageName.rpartition('.')
2526
+
2527
+ if parent:
2528
+ declare_namespace(parent)
2529
+ if parent not in _namespace_packages:
2530
+ __import__(parent)
2531
+ try:
2532
+ path = sys.modules[parent].__path__
2533
+ except AttributeError as e:
2534
+ raise TypeError("Not a package:", parent) from e
2535
+
2536
+ # Track what packages are namespaces, so when new path items are added,
2537
+ # they can be updated
2538
+ _namespace_packages.setdefault(parent or None, []).append(packageName)
2539
+ _namespace_packages.setdefault(packageName, [])
2540
+
2541
+ for path_item in path:
2542
+ # Ensure all the parent's path items are reflected in the child,
2543
+ # if they apply
2544
+ _handle_ns(packageName, path_item)
2545
+
2546
+ finally:
2547
+ _imp.release_lock()
2548
+
2549
+
2550
+ def fixup_namespace_packages(path_item: str, parent: str | None = None):
2551
+ """Ensure that previously-declared namespace packages include path_item"""
2552
+ _imp.acquire_lock()
2553
+ try:
2554
+ for package in _namespace_packages.get(parent, ()):
2555
+ subpath = _handle_ns(package, path_item)
2556
+ if subpath:
2557
+ fixup_namespace_packages(subpath, package)
2558
+ finally:
2559
+ _imp.release_lock()
2560
+
2561
+
2562
+ def file_ns_handler(
2563
+ importer: object,
2564
+ path_item: StrPath,
2565
+ packageName: str,
2566
+ module: types.ModuleType,
2567
+ ):
2568
+ """Compute an ns-package subpath for a filesystem or zipfile importer"""
2569
+
2570
+ subpath = os.path.join(path_item, packageName.split('.')[-1])
2571
+ normalized = _normalize_cached(subpath)
2572
+ for item in module.__path__:
2573
+ if _normalize_cached(item) == normalized:
2574
+ break
2575
+ else:
2576
+ # Only return the path if it's not already there
2577
+ return subpath
2578
+
2579
+
2580
+ if hasattr(pkgutil, 'ImpImporter'):
2581
+ register_namespace_handler(pkgutil.ImpImporter, file_ns_handler)
2582
+
2583
+ register_namespace_handler(zipimport.zipimporter, file_ns_handler)
2584
+ register_namespace_handler(importlib.machinery.FileFinder, file_ns_handler)
2585
+
2586
+
2587
+ def null_ns_handler(
2588
+ importer: object,
2589
+ path_item: str | None,
2590
+ packageName: str | None,
2591
+ module: _ModuleLike | None,
2592
+ ):
2593
+ return None
2594
+
2595
+
2596
+ register_namespace_handler(object, null_ns_handler)
2597
+
2598
+
2599
+ @overload
2600
+ def normalize_path(filename: StrPath) -> str: ...
2601
+ @overload
2602
+ def normalize_path(filename: BytesPath) -> bytes: ...
2603
+ def normalize_path(filename: StrOrBytesPath):
2604
+ """Normalize a file/dir name for comparison purposes"""
2605
+ return os.path.normcase(os.path.realpath(os.path.normpath(_cygwin_patch(filename))))
2606
+
2607
+
2608
+ def _cygwin_patch(filename: StrOrBytesPath): # pragma: nocover
2609
+ """
2610
+ Contrary to POSIX 2008, on Cygwin, getcwd (3) contains
2611
+ symlink components. Using
2612
+ os.path.abspath() works around this limitation. A fix in os.getcwd()
2613
+ would probably better, in Cygwin even more so, except
2614
+ that this seems to be by design...
2615
+ """
2616
+ return os.path.abspath(filename) if sys.platform == 'cygwin' else filename
2617
+
2618
+
2619
+ if TYPE_CHECKING:
2620
+ # https://github.com/python/mypy/issues/16261
2621
+ # https://github.com/python/typeshed/issues/6347
2622
+ @overload
2623
+ def _normalize_cached(filename: StrPath) -> str: ...
2624
+ @overload
2625
+ def _normalize_cached(filename: BytesPath) -> bytes: ...
2626
+ def _normalize_cached(filename: StrOrBytesPath) -> str | bytes: ...
2627
+ else:
2628
+
2629
+ @functools.lru_cache(maxsize=None)
2630
+ def _normalize_cached(filename):
2631
+ return normalize_path(filename)
2632
+
2633
+
2634
+ def _is_egg_path(path):
2635
+ """
2636
+ Determine if given path appears to be an egg.
2637
+ """
2638
+ return _is_zip_egg(path) or _is_unpacked_egg(path)
2639
+
2640
+
2641
+ def _is_zip_egg(path):
2642
+ return (
2643
+ path.lower().endswith('.egg')
2644
+ and os.path.isfile(path)
2645
+ and zipfile.is_zipfile(path)
2646
+ )
2647
+
2648
+
2649
+ def _is_unpacked_egg(path):
2650
+ """
2651
+ Determine if given path appears to be an unpacked egg.
2652
+ """
2653
+ return path.lower().endswith('.egg') and os.path.isfile(
2654
+ os.path.join(path, 'EGG-INFO', 'PKG-INFO')
2655
+ )
2656
+
2657
+
2658
+ def _set_parent_ns(packageName):
2659
+ parts = packageName.split('.')
2660
+ name = parts.pop()
2661
+ if parts:
2662
+ parent = '.'.join(parts)
2663
+ setattr(sys.modules[parent], name, sys.modules[packageName])
2664
+
2665
+
2666
+ MODULE = re.compile(r"\w+(\.\w+)*$").match
2667
+ EGG_NAME = re.compile(
2668
+ r"""
2669
+ (?P<name>[^-]+) (
2670
+ -(?P<ver>[^-]+) (
2671
+ -py(?P<pyver>[^-]+) (
2672
+ -(?P<plat>.+)
2673
+ )?
2674
+ )?
2675
+ )?
2676
+ """,
2677
+ re.VERBOSE | re.IGNORECASE,
2678
+ ).match
2679
+
2680
+
2681
+ class EntryPoint:
2682
+ """Object representing an advertised importable object"""
2683
+
2684
+ def __init__(
2685
+ self,
2686
+ name: str,
2687
+ module_name: str,
2688
+ attrs: Iterable[str] = (),
2689
+ extras: Iterable[str] = (),
2690
+ dist: Distribution | None = None,
2691
+ ):
2692
+ if not MODULE(module_name):
2693
+ raise ValueError("Invalid module name", module_name)
2694
+ self.name = name
2695
+ self.module_name = module_name
2696
+ self.attrs = tuple(attrs)
2697
+ self.extras = tuple(extras)
2698
+ self.dist = dist
2699
+
2700
+ def __str__(self):
2701
+ s = "%s = %s" % (self.name, self.module_name)
2702
+ if self.attrs:
2703
+ s += ':' + '.'.join(self.attrs)
2704
+ if self.extras:
2705
+ s += ' [%s]' % ','.join(self.extras)
2706
+ return s
2707
+
2708
+ def __repr__(self):
2709
+ return "EntryPoint.parse(%r)" % str(self)
2710
+
2711
+ @overload
2712
+ def load(
2713
+ self,
2714
+ require: Literal[True] = True,
2715
+ env: Environment | None = None,
2716
+ installer: _InstallerType | None = None,
2717
+ ) -> _ResolvedEntryPoint: ...
2718
+ @overload
2719
+ def load(
2720
+ self,
2721
+ require: Literal[False],
2722
+ *args: Any,
2723
+ **kwargs: Any,
2724
+ ) -> _ResolvedEntryPoint: ...
2725
+ def load(
2726
+ self,
2727
+ require: bool = True,
2728
+ *args: Environment | _InstallerType | None,
2729
+ **kwargs: Environment | _InstallerType | None,
2730
+ ) -> _ResolvedEntryPoint:
2731
+ """
2732
+ Require packages for this EntryPoint, then resolve it.
2733
+ """
2734
+ if not require or args or kwargs:
2735
+ warnings.warn(
2736
+ "Parameters to load are deprecated. Call .resolve and "
2737
+ ".require separately.",
2738
+ PkgResourcesDeprecationWarning,
2739
+ stacklevel=2,
2740
+ )
2741
+ if require:
2742
+ # We could pass `env` and `installer` directly,
2743
+ # but keeping `*args` and `**kwargs` for backwards compatibility
2744
+ self.require(*args, **kwargs) # type: ignore
2745
+ return self.resolve()
2746
+
2747
+ def resolve(self) -> _ResolvedEntryPoint:
2748
+ """
2749
+ Resolve the entry point from its module and attrs.
2750
+ """
2751
+ module = __import__(self.module_name, fromlist=['__name__'], level=0)
2752
+ try:
2753
+ return functools.reduce(getattr, self.attrs, module)
2754
+ except AttributeError as exc:
2755
+ raise ImportError(str(exc)) from exc
2756
+
2757
+ def require(
2758
+ self,
2759
+ env: Environment | None = None,
2760
+ installer: _InstallerType | None = None,
2761
+ ):
2762
+ if not self.dist:
2763
+ error_cls = UnknownExtra if self.extras else AttributeError
2764
+ raise error_cls("Can't require() without a distribution", self)
2765
+
2766
+ # Get the requirements for this entry point with all its extras and
2767
+ # then resolve them. We have to pass `extras` along when resolving so
2768
+ # that the working set knows what extras we want. Otherwise, for
2769
+ # dist-info distributions, the working set will assume that the
2770
+ # requirements for that extra are purely optional and skip over them.
2771
+ reqs = self.dist.requires(self.extras)
2772
+ items = working_set.resolve(reqs, env, installer, extras=self.extras)
2773
+ list(map(working_set.add, items))
2774
+
2775
+ pattern = re.compile(
2776
+ r'\s*'
2777
+ r'(?P<name>.+?)\s*'
2778
+ r'=\s*'
2779
+ r'(?P<module>[\w.]+)\s*'
2780
+ r'(:\s*(?P<attr>[\w.]+))?\s*'
2781
+ r'(?P<extras>\[.*\])?\s*$'
2782
+ )
2783
+
2784
+ @classmethod
2785
+ def parse(cls, src: str, dist: Distribution | None = None):
2786
+ """Parse a single entry point from string `src`
2787
+
2788
+ Entry point syntax follows the form::
2789
+
2790
+ name = some.module:some.attr [extra1, extra2]
2791
+
2792
+ The entry name and module name are required, but the ``:attrs`` and
2793
+ ``[extras]`` parts are optional
2794
+ """
2795
+ m = cls.pattern.match(src)
2796
+ if not m:
2797
+ msg = "EntryPoint must be in 'name=module:attrs [extras]' format"
2798
+ raise ValueError(msg, src)
2799
+ res = m.groupdict()
2800
+ extras = cls._parse_extras(res['extras'])
2801
+ attrs = res['attr'].split('.') if res['attr'] else ()
2802
+ return cls(res['name'], res['module'], attrs, extras, dist)
2803
+
2804
+ @classmethod
2805
+ def _parse_extras(cls, extras_spec):
2806
+ if not extras_spec:
2807
+ return ()
2808
+ req = Requirement.parse('x' + extras_spec)
2809
+ if req.specs:
2810
+ raise ValueError
2811
+ return req.extras
2812
+
2813
+ @classmethod
2814
+ def parse_group(
2815
+ cls,
2816
+ group: str,
2817
+ lines: _NestedStr,
2818
+ dist: Distribution | None = None,
2819
+ ):
2820
+ """Parse an entry point group"""
2821
+ if not MODULE(group):
2822
+ raise ValueError("Invalid group name", group)
2823
+ this: dict[str, Self] = {}
2824
+ for line in yield_lines(lines):
2825
+ ep = cls.parse(line, dist)
2826
+ if ep.name in this:
2827
+ raise ValueError("Duplicate entry point", group, ep.name)
2828
+ this[ep.name] = ep
2829
+ return this
2830
+
2831
+ @classmethod
2832
+ def parse_map(
2833
+ cls,
2834
+ data: str | Iterable[str] | dict[str, str | Iterable[str]],
2835
+ dist: Distribution | None = None,
2836
+ ):
2837
+ """Parse a map of entry point groups"""
2838
+ _data: Iterable[tuple[str | None, str | Iterable[str]]]
2839
+ if isinstance(data, dict):
2840
+ _data = data.items()
2841
+ else:
2842
+ _data = split_sections(data)
2843
+ maps: dict[str, dict[str, Self]] = {}
2844
+ for group, lines in _data:
2845
+ if group is None:
2846
+ if not lines:
2847
+ continue
2848
+ raise ValueError("Entry points must be listed in groups")
2849
+ group = group.strip()
2850
+ if group in maps:
2851
+ raise ValueError("Duplicate group name", group)
2852
+ maps[group] = cls.parse_group(group, lines, dist)
2853
+ return maps
2854
+
2855
+
2856
+ def _version_from_file(lines):
2857
+ """
2858
+ Given an iterable of lines from a Metadata file, return
2859
+ the value of the Version field, if present, or None otherwise.
2860
+ """
2861
+
2862
+ def is_version_line(line):
2863
+ return line.lower().startswith('version:')
2864
+
2865
+ version_lines = filter(is_version_line, lines)
2866
+ line = next(iter(version_lines), '')
2867
+ _, _, value = line.partition(':')
2868
+ return safe_version(value.strip()) or None
2869
+
2870
+
2871
+ class Distribution:
2872
+ """Wrap an actual or potential sys.path entry w/metadata"""
2873
+
2874
+ PKG_INFO = 'PKG-INFO'
2875
+
2876
+ def __init__(
2877
+ self,
2878
+ location: str | None = None,
2879
+ metadata: _MetadataType = None,
2880
+ project_name: str | None = None,
2881
+ version: str | None = None,
2882
+ py_version: str | None = PY_MAJOR,
2883
+ platform: str | None = None,
2884
+ precedence: int = EGG_DIST,
2885
+ ):
2886
+ self.project_name = safe_name(project_name or 'Unknown')
2887
+ if version is not None:
2888
+ self._version = safe_version(version)
2889
+ self.py_version = py_version
2890
+ self.platform = platform
2891
+ self.location = location
2892
+ self.precedence = precedence
2893
+ self._provider = metadata or empty_provider
2894
+
2895
+ @classmethod
2896
+ def from_location(
2897
+ cls,
2898
+ location: str,
2899
+ basename: StrPath,
2900
+ metadata: _MetadataType = None,
2901
+ **kw: int, # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
2902
+ ) -> Distribution:
2903
+ project_name, version, py_version, platform = [None] * 4
2904
+ basename, ext = os.path.splitext(basename)
2905
+ if ext.lower() in _distributionImpl:
2906
+ cls = _distributionImpl[ext.lower()]
2907
+
2908
+ match = EGG_NAME(basename)
2909
+ if match:
2910
+ project_name, version, py_version, platform = match.group(
2911
+ 'name', 'ver', 'pyver', 'plat'
2912
+ )
2913
+ return cls(
2914
+ location,
2915
+ metadata,
2916
+ project_name=project_name,
2917
+ version=version,
2918
+ py_version=py_version,
2919
+ platform=platform,
2920
+ **kw,
2921
+ )._reload_version()
2922
+
2923
+ def _reload_version(self):
2924
+ return self
2925
+
2926
+ @property
2927
+ def hashcmp(self):
2928
+ return (
2929
+ self._forgiving_parsed_version,
2930
+ self.precedence,
2931
+ self.key,
2932
+ self.location,
2933
+ self.py_version or '',
2934
+ self.platform or '',
2935
+ )
2936
+
2937
+ def __hash__(self):
2938
+ return hash(self.hashcmp)
2939
+
2940
+ def __lt__(self, other: Distribution):
2941
+ return self.hashcmp < other.hashcmp
2942
+
2943
+ def __le__(self, other: Distribution):
2944
+ return self.hashcmp <= other.hashcmp
2945
+
2946
+ def __gt__(self, other: Distribution):
2947
+ return self.hashcmp > other.hashcmp
2948
+
2949
+ def __ge__(self, other: Distribution):
2950
+ return self.hashcmp >= other.hashcmp
2951
+
2952
+ def __eq__(self, other: object):
2953
+ if not isinstance(other, self.__class__):
2954
+ # It's not a Distribution, so they are not equal
2955
+ return False
2956
+ return self.hashcmp == other.hashcmp
2957
+
2958
+ def __ne__(self, other: object):
2959
+ return not self == other
2960
+
2961
+ # These properties have to be lazy so that we don't have to load any
2962
+ # metadata until/unless it's actually needed. (i.e., some distributions
2963
+ # may not know their name or version without loading PKG-INFO)
2964
+
2965
+ @property
2966
+ def key(self):
2967
+ try:
2968
+ return self._key
2969
+ except AttributeError:
2970
+ self._key = key = self.project_name.lower()
2971
+ return key
2972
+
2973
+ @property
2974
+ def parsed_version(self):
2975
+ if not hasattr(self, "_parsed_version"):
2976
+ try:
2977
+ self._parsed_version = parse_version(self.version)
2978
+ except _packaging_version.InvalidVersion as ex:
2979
+ info = f"(package: {self.project_name})"
2980
+ if hasattr(ex, "add_note"):
2981
+ ex.add_note(info) # PEP 678
2982
+ raise
2983
+ raise _packaging_version.InvalidVersion(f"{str(ex)} {info}") from None
2984
+
2985
+ return self._parsed_version
2986
+
2987
+ @property
2988
+ def _forgiving_parsed_version(self):
2989
+ try:
2990
+ return self.parsed_version
2991
+ except _packaging_version.InvalidVersion as ex:
2992
+ self._parsed_version = parse_version(_forgiving_version(self.version))
2993
+
2994
+ notes = "\n".join(getattr(ex, "__notes__", [])) # PEP 678
2995
+ msg = f"""!!\n\n
2996
+ *************************************************************************
2997
+ {str(ex)}\n{notes}
2998
+
2999
+ This is a long overdue deprecation.
3000
+ For the time being, `pkg_resources` will use `{self._parsed_version}`
3001
+ as a replacement to avoid breaking existing environments,
3002
+ but no future compatibility is guaranteed.
3003
+
3004
+ If you maintain package {self.project_name} you should implement
3005
+ the relevant changes to adequate the project to PEP 440 immediately.
3006
+ *************************************************************************
3007
+ \n\n!!
3008
+ """
3009
+ warnings.warn(msg, DeprecationWarning)
3010
+
3011
+ return self._parsed_version
3012
+
3013
+ @property
3014
+ def version(self):
3015
+ try:
3016
+ return self._version
3017
+ except AttributeError as e:
3018
+ version = self._get_version()
3019
+ if version is None:
3020
+ path = self._get_metadata_path_for_display(self.PKG_INFO)
3021
+ msg = ("Missing 'Version:' header and/or {} file at path: {}").format(
3022
+ self.PKG_INFO, path
3023
+ )
3024
+ raise ValueError(msg, self) from e
3025
+
3026
+ return version
3027
+
3028
+ @property
3029
+ def _dep_map(self):
3030
+ """
3031
+ A map of extra to its list of (direct) requirements
3032
+ for this distribution, including the null extra.
3033
+ """
3034
+ try:
3035
+ return self.__dep_map
3036
+ except AttributeError:
3037
+ self.__dep_map = self._filter_extras(self._build_dep_map())
3038
+ return self.__dep_map
3039
+
3040
+ @staticmethod
3041
+ def _filter_extras(dm: dict[str | None, list[Requirement]]):
3042
+ """
3043
+ Given a mapping of extras to dependencies, strip off
3044
+ environment markers and filter out any dependencies
3045
+ not matching the markers.
3046
+ """
3047
+ for extra in list(filter(None, dm)):
3048
+ new_extra: str | None = extra
3049
+ reqs = dm.pop(extra)
3050
+ new_extra, _, marker = extra.partition(':')
3051
+ fails_marker = marker and (
3052
+ invalid_marker(marker) or not evaluate_marker(marker)
3053
+ )
3054
+ if fails_marker:
3055
+ reqs = []
3056
+ new_extra = safe_extra(new_extra) or None
3057
+
3058
+ dm.setdefault(new_extra, []).extend(reqs)
3059
+ return dm
3060
+
3061
+ def _build_dep_map(self):
3062
+ dm = {}
3063
+ for name in 'requires.txt', 'depends.txt':
3064
+ for extra, reqs in split_sections(self._get_metadata(name)):
3065
+ dm.setdefault(extra, []).extend(parse_requirements(reqs))
3066
+ return dm
3067
+
3068
+ def requires(self, extras: Iterable[str] = ()):
3069
+ """List of Requirements needed for this distro if `extras` are used"""
3070
+ dm = self._dep_map
3071
+ deps: list[Requirement] = []
3072
+ deps.extend(dm.get(None, ()))
3073
+ for ext in extras:
3074
+ try:
3075
+ deps.extend(dm[safe_extra(ext)])
3076
+ except KeyError as e:
3077
+ raise UnknownExtra(
3078
+ "%s has no such extra feature %r" % (self, ext)
3079
+ ) from e
3080
+ return deps
3081
+
3082
+ def _get_metadata_path_for_display(self, name):
3083
+ """
3084
+ Return the path to the given metadata file, if available.
3085
+ """
3086
+ try:
3087
+ # We need to access _get_metadata_path() on the provider object
3088
+ # directly rather than through this class's __getattr__()
3089
+ # since _get_metadata_path() is marked private.
3090
+ path = self._provider._get_metadata_path(name)
3091
+
3092
+ # Handle exceptions e.g. in case the distribution's metadata
3093
+ # provider doesn't support _get_metadata_path().
3094
+ except Exception:
3095
+ return '[could not detect]'
3096
+
3097
+ return path
3098
+
3099
+ def _get_metadata(self, name):
3100
+ if self.has_metadata(name):
3101
+ yield from self.get_metadata_lines(name)
3102
+
3103
+ def _get_version(self):
3104
+ lines = self._get_metadata(self.PKG_INFO)
3105
+ return _version_from_file(lines)
3106
+
3107
+ def activate(self, path: list[str] | None = None, replace: bool = False):
3108
+ """Ensure distribution is importable on `path` (default=sys.path)"""
3109
+ if path is None:
3110
+ path = sys.path
3111
+ self.insert_on(path, replace=replace)
3112
+ if path is sys.path and self.location is not None:
3113
+ fixup_namespace_packages(self.location)
3114
+ for pkg in self._get_metadata('namespace_packages.txt'):
3115
+ if pkg in sys.modules:
3116
+ declare_namespace(pkg)
3117
+
3118
+ def egg_name(self):
3119
+ """Return what this distribution's standard .egg filename should be"""
3120
+ filename = "%s-%s-py%s" % (
3121
+ to_filename(self.project_name),
3122
+ to_filename(self.version),
3123
+ self.py_version or PY_MAJOR,
3124
+ )
3125
+
3126
+ if self.platform:
3127
+ filename += '-' + self.platform
3128
+ return filename
3129
+
3130
+ def __repr__(self):
3131
+ if self.location:
3132
+ return "%s (%s)" % (self, self.location)
3133
+ else:
3134
+ return str(self)
3135
+
3136
+ def __str__(self):
3137
+ try:
3138
+ version = getattr(self, 'version', None)
3139
+ except ValueError:
3140
+ version = None
3141
+ version = version or "[unknown version]"
3142
+ return "%s %s" % (self.project_name, version)
3143
+
3144
+ def __getattr__(self, attr):
3145
+ """Delegate all unrecognized public attributes to .metadata provider"""
3146
+ if attr.startswith('_'):
3147
+ raise AttributeError(attr)
3148
+ return getattr(self._provider, attr)
3149
+
3150
+ def __dir__(self):
3151
+ return list(
3152
+ set(super().__dir__())
3153
+ | set(attr for attr in self._provider.__dir__() if not attr.startswith('_'))
3154
+ )
3155
+
3156
+ @classmethod
3157
+ def from_filename(
3158
+ cls,
3159
+ filename: StrPath,
3160
+ metadata: _MetadataType = None,
3161
+ **kw: int, # We could set `precedence` explicitly, but keeping this as `**kw` for full backwards and subclassing compatibility
3162
+ ):
3163
+ return cls.from_location(
3164
+ _normalize_cached(filename), os.path.basename(filename), metadata, **kw
3165
+ )
3166
+
3167
+ def as_requirement(self):
3168
+ """Return a ``Requirement`` that matches this distribution exactly"""
3169
+ if isinstance(self.parsed_version, _packaging_version.Version):
3170
+ spec = "%s==%s" % (self.project_name, self.parsed_version)
3171
+ else:
3172
+ spec = "%s===%s" % (self.project_name, self.parsed_version)
3173
+
3174
+ return Requirement.parse(spec)
3175
+
3176
+ def load_entry_point(self, group: str, name: str) -> _ResolvedEntryPoint:
3177
+ """Return the `name` entry point of `group` or raise ImportError"""
3178
+ ep = self.get_entry_info(group, name)
3179
+ if ep is None:
3180
+ raise ImportError("Entry point %r not found" % ((group, name),))
3181
+ return ep.load()
3182
+
3183
+ @overload
3184
+ def get_entry_map(self, group: None = None) -> dict[str, dict[str, EntryPoint]]: ...
3185
+ @overload
3186
+ def get_entry_map(self, group: str) -> dict[str, EntryPoint]: ...
3187
+ def get_entry_map(self, group: str | None = None):
3188
+ """Return the entry point map for `group`, or the full entry map"""
3189
+ if not hasattr(self, "_ep_map"):
3190
+ self._ep_map = EntryPoint.parse_map(
3191
+ self._get_metadata('entry_points.txt'), self
3192
+ )
3193
+ if group is not None:
3194
+ return self._ep_map.get(group, {})
3195
+ return self._ep_map
3196
+
3197
+ def get_entry_info(self, group: str, name: str):
3198
+ """Return the EntryPoint object for `group`+`name`, or ``None``"""
3199
+ return self.get_entry_map(group).get(name)
3200
+
3201
+ # FIXME: 'Distribution.insert_on' is too complex (13)
3202
+ def insert_on( # noqa: C901
3203
+ self,
3204
+ path: list[str],
3205
+ loc=None,
3206
+ replace: bool = False,
3207
+ ):
3208
+ """Ensure self.location is on path
3209
+
3210
+ If replace=False (default):
3211
+ - If location is already in path anywhere, do nothing.
3212
+ - Else:
3213
+ - If it's an egg and its parent directory is on path,
3214
+ insert just ahead of the parent.
3215
+ - Else: add to the end of path.
3216
+ If replace=True:
3217
+ - If location is already on path anywhere (not eggs)
3218
+ or higher priority than its parent (eggs)
3219
+ do nothing.
3220
+ - Else:
3221
+ - If it's an egg and its parent directory is on path,
3222
+ insert just ahead of the parent,
3223
+ removing any lower-priority entries.
3224
+ - Else: add it to the front of path.
3225
+ """
3226
+
3227
+ loc = loc or self.location
3228
+ if not loc:
3229
+ return
3230
+
3231
+ nloc = _normalize_cached(loc)
3232
+ bdir = os.path.dirname(nloc)
3233
+ npath = [(p and _normalize_cached(p) or p) for p in path]
3234
+
3235
+ for p, item in enumerate(npath):
3236
+ if item == nloc:
3237
+ if replace:
3238
+ break
3239
+ else:
3240
+ # don't modify path (even removing duplicates) if
3241
+ # found and not replace
3242
+ return
3243
+ elif item == bdir and self.precedence == EGG_DIST:
3244
+ # if it's an .egg, give it precedence over its directory
3245
+ # UNLESS it's already been added to sys.path and replace=False
3246
+ if (not replace) and nloc in npath[p:]:
3247
+ return
3248
+ if path is sys.path:
3249
+ self.check_version_conflict()
3250
+ path.insert(p, loc)
3251
+ npath.insert(p, nloc)
3252
+ break
3253
+ else:
3254
+ if path is sys.path:
3255
+ self.check_version_conflict()
3256
+ if replace:
3257
+ path.insert(0, loc)
3258
+ else:
3259
+ path.append(loc)
3260
+ return
3261
+
3262
+ # p is the spot where we found or inserted loc; now remove duplicates
3263
+ while True:
3264
+ try:
3265
+ np = npath.index(nloc, p + 1)
3266
+ except ValueError:
3267
+ break
3268
+ else:
3269
+ del npath[np], path[np]
3270
+ # ha!
3271
+ p = np
3272
+
3273
+ return
3274
+
3275
+ def check_version_conflict(self):
3276
+ if self.key == 'setuptools':
3277
+ # ignore the inevitable setuptools self-conflicts :(
3278
+ return
3279
+
3280
+ nsp = dict.fromkeys(self._get_metadata('namespace_packages.txt'))
3281
+ loc = normalize_path(self.location)
3282
+ for modname in self._get_metadata('top_level.txt'):
3283
+ if (
3284
+ modname not in sys.modules
3285
+ or modname in nsp
3286
+ or modname in _namespace_packages
3287
+ ):
3288
+ continue
3289
+ if modname in ('pkg_resources', 'setuptools', 'site'):
3290
+ continue
3291
+ fn = getattr(sys.modules[modname], '__file__', None)
3292
+ if fn and (
3293
+ normalize_path(fn).startswith(loc) or fn.startswith(self.location)
3294
+ ):
3295
+ continue
3296
+ issue_warning(
3297
+ "Module %s was already imported from %s, but %s is being added"
3298
+ " to sys.path" % (modname, fn, self.location),
3299
+ )
3300
+
3301
+ def has_version(self):
3302
+ try:
3303
+ self.version
3304
+ except ValueError:
3305
+ issue_warning("Unbuilt egg for " + repr(self))
3306
+ return False
3307
+ except SystemError:
3308
+ # TODO: remove this except clause when python/cpython#103632 is fixed.
3309
+ return False
3310
+ return True
3311
+
3312
+ def clone(self, **kw: str | int | IResourceProvider | None):
3313
+ """Copy this distribution, substituting in any changed keyword args"""
3314
+ names = 'project_name version py_version platform location precedence'
3315
+ for attr in names.split():
3316
+ kw.setdefault(attr, getattr(self, attr, None))
3317
+ kw.setdefault('metadata', self._provider)
3318
+ # Unsafely unpacking. But keeping **kw for backwards and subclassing compatibility
3319
+ return self.__class__(**kw) # type:ignore[arg-type]
3320
+
3321
+ @property
3322
+ def extras(self):
3323
+ return [dep for dep in self._dep_map if dep]
3324
+
3325
+
3326
+ class EggInfoDistribution(Distribution):
3327
+ def _reload_version(self):
3328
+ """
3329
+ Packages installed by distutils (e.g. numpy or scipy),
3330
+ which uses an old safe_version, and so
3331
+ their version numbers can get mangled when
3332
+ converted to filenames (e.g., 1.11.0.dev0+2329eae to
3333
+ 1.11.0.dev0_2329eae). These distributions will not be
3334
+ parsed properly
3335
+ downstream by Distribution and safe_version, so
3336
+ take an extra step and try to get the version number from
3337
+ the metadata file itself instead of the filename.
3338
+ """
3339
+ md_version = self._get_version()
3340
+ if md_version:
3341
+ self._version = md_version
3342
+ return self
3343
+
3344
+
3345
+ class DistInfoDistribution(Distribution):
3346
+ """
3347
+ Wrap an actual or potential sys.path entry
3348
+ w/metadata, .dist-info style.
3349
+ """
3350
+
3351
+ PKG_INFO = 'METADATA'
3352
+ EQEQ = re.compile(r"([\(,])\s*(\d.*?)\s*([,\)])")
3353
+
3354
+ @property
3355
+ def _parsed_pkg_info(self):
3356
+ """Parse and cache metadata"""
3357
+ try:
3358
+ return self._pkg_info
3359
+ except AttributeError:
3360
+ metadata = self.get_metadata(self.PKG_INFO)
3361
+ self._pkg_info = email.parser.Parser().parsestr(metadata)
3362
+ return self._pkg_info
3363
+
3364
+ @property
3365
+ def _dep_map(self):
3366
+ try:
3367
+ return self.__dep_map
3368
+ except AttributeError:
3369
+ self.__dep_map = self._compute_dependencies()
3370
+ return self.__dep_map
3371
+
3372
+ def _compute_dependencies(self) -> dict[str | None, list[Requirement]]:
3373
+ """Recompute this distribution's dependencies."""
3374
+ self.__dep_map: dict[str | None, list[Requirement]] = {None: []}
3375
+
3376
+ reqs: list[Requirement] = []
3377
+ # Including any condition expressions
3378
+ for req in self._parsed_pkg_info.get_all('Requires-Dist') or []:
3379
+ reqs.extend(parse_requirements(req))
3380
+
3381
+ def reqs_for_extra(extra):
3382
+ for req in reqs:
3383
+ if not req.marker or req.marker.evaluate({'extra': extra}):
3384
+ yield req
3385
+
3386
+ common = types.MappingProxyType(dict.fromkeys(reqs_for_extra(None)))
3387
+ self.__dep_map[None].extend(common)
3388
+
3389
+ for extra in self._parsed_pkg_info.get_all('Provides-Extra') or []:
3390
+ s_extra = safe_extra(extra.strip())
3391
+ self.__dep_map[s_extra] = [
3392
+ r for r in reqs_for_extra(extra) if r not in common
3393
+ ]
3394
+
3395
+ return self.__dep_map
3396
+
3397
+
3398
+ _distributionImpl = {
3399
+ '.egg': Distribution,
3400
+ '.egg-info': EggInfoDistribution,
3401
+ '.dist-info': DistInfoDistribution,
3402
+ }
3403
+
3404
+
3405
+ def issue_warning(*args, **kw):
3406
+ level = 1
3407
+ g = globals()
3408
+ try:
3409
+ # find the first stack frame that is *not* code in
3410
+ # the pkg_resources module, to use for the warning
3411
+ while sys._getframe(level).f_globals is g:
3412
+ level += 1
3413
+ except ValueError:
3414
+ pass
3415
+ warnings.warn(stacklevel=level + 1, *args, **kw)
3416
+
3417
+
3418
+ def parse_requirements(strs: _NestedStr):
3419
+ """
3420
+ Yield ``Requirement`` objects for each specification in `strs`.
3421
+
3422
+ `strs` must be a string, or a (possibly-nested) iterable thereof.
3423
+ """
3424
+ return map(Requirement, join_continuation(map(drop_comment, yield_lines(strs))))
3425
+
3426
+
3427
+ class RequirementParseError(_packaging_requirements.InvalidRequirement):
3428
+ "Compatibility wrapper for InvalidRequirement"
3429
+
3430
+
3431
+ class Requirement(_packaging_requirements.Requirement):
3432
+ def __init__(self, requirement_string: str):
3433
+ """DO NOT CALL THIS UNDOCUMENTED METHOD; use Requirement.parse()!"""
3434
+ super().__init__(requirement_string)
3435
+ self.unsafe_name = self.name
3436
+ project_name = safe_name(self.name)
3437
+ self.project_name, self.key = project_name, project_name.lower()
3438
+ self.specs = [(spec.operator, spec.version) for spec in self.specifier]
3439
+ # packaging.requirements.Requirement uses a set for its extras. We use a variable-length tuple
3440
+ self.extras: tuple[str] = tuple(map(safe_extra, self.extras))
3441
+ self.hashCmp = (
3442
+ self.key,
3443
+ self.url,
3444
+ self.specifier,
3445
+ frozenset(self.extras),
3446
+ str(self.marker) if self.marker else None,
3447
+ )
3448
+ self.__hash = hash(self.hashCmp)
3449
+
3450
+ def __eq__(self, other: object):
3451
+ return isinstance(other, Requirement) and self.hashCmp == other.hashCmp
3452
+
3453
+ def __ne__(self, other):
3454
+ return not self == other
3455
+
3456
+ def __contains__(self, item: Distribution | str | tuple[str, ...]) -> bool:
3457
+ if isinstance(item, Distribution):
3458
+ if item.key != self.key:
3459
+ return False
3460
+
3461
+ item = item.version
3462
+
3463
+ # Allow prereleases always in order to match the previous behavior of
3464
+ # this method. In the future this should be smarter and follow PEP 440
3465
+ # more accurately.
3466
+ return self.specifier.contains(item, prereleases=True)
3467
+
3468
+ def __hash__(self):
3469
+ return self.__hash
3470
+
3471
+ def __repr__(self):
3472
+ return "Requirement.parse(%r)" % str(self)
3473
+
3474
+ @staticmethod
3475
+ def parse(s: str | Iterable[str]):
3476
+ (req,) = parse_requirements(s)
3477
+ return req
3478
+
3479
+
3480
+ def _always_object(classes):
3481
+ """
3482
+ Ensure object appears in the mro even
3483
+ for old-style classes.
3484
+ """
3485
+ if object not in classes:
3486
+ return classes + (object,)
3487
+ return classes
3488
+
3489
+
3490
+ def _find_adapter(registry: Mapping[type, _AdapterT], ob: object) -> _AdapterT:
3491
+ """Return an adapter factory for `ob` from `registry`"""
3492
+ types = _always_object(inspect.getmro(getattr(ob, '__class__', type(ob))))
3493
+ for t in types:
3494
+ if t in registry:
3495
+ return registry[t]
3496
+ # _find_adapter would previously return None, and immediately be called.
3497
+ # So we're raising a TypeError to keep backward compatibility if anyone depended on that behaviour.
3498
+ raise TypeError(f"Could not find adapter for {registry} and {ob}")
3499
+
3500
+
3501
+ def ensure_directory(path: StrOrBytesPath):
3502
+ """Ensure that the parent directory of `path` exists"""
3503
+ dirname = os.path.dirname(path)
3504
+ os.makedirs(dirname, exist_ok=True)
3505
+
3506
+
3507
+ def _bypass_ensure_directory(path):
3508
+ """Sandbox-bypassing version of ensure_directory()"""
3509
+ if not WRITE_SUPPORT:
3510
+ raise OSError('"os.mkdir" not supported on this platform.')
3511
+ dirname, filename = split(path)
3512
+ if dirname and filename and not isdir(dirname):
3513
+ _bypass_ensure_directory(dirname)
3514
+ try:
3515
+ mkdir(dirname, 0o755)
3516
+ except FileExistsError:
3517
+ pass
3518
+
3519
+
3520
+ def split_sections(s: _NestedStr) -> Iterator[tuple[str | None, list[str]]]:
3521
+ """Split a string or iterable thereof into (section, content) pairs
3522
+
3523
+ Each ``section`` is a stripped version of the section header ("[section]")
3524
+ and each ``content`` is a list of stripped lines excluding blank lines and
3525
+ comment-only lines. If there are any such lines before the first section
3526
+ header, they're returned in a first ``section`` of ``None``.
3527
+ """
3528
+ section = None
3529
+ content = []
3530
+ for line in yield_lines(s):
3531
+ if line.startswith("["):
3532
+ if line.endswith("]"):
3533
+ if section or content:
3534
+ yield section, content
3535
+ section = line[1:-1].strip()
3536
+ content = []
3537
+ else:
3538
+ raise ValueError("Invalid section heading", line)
3539
+ else:
3540
+ content.append(line)
3541
+
3542
+ # wrap up last segment
3543
+ yield section, content
3544
+
3545
+
3546
+ def _mkstemp(*args, **kw):
3547
+ old_open = os.open
3548
+ try:
3549
+ # temporarily bypass sandboxing
3550
+ os.open = os_open
3551
+ return tempfile.mkstemp(*args, **kw)
3552
+ finally:
3553
+ # and then put it back
3554
+ os.open = old_open
3555
+
3556
+
3557
+ # Silence the PEP440Warning by default, so that end users don't get hit by it
3558
+ # randomly just because they use pkg_resources. We want to append the rule
3559
+ # because we want earlier uses of filterwarnings to take precedence over this
3560
+ # one.
3561
+ warnings.filterwarnings("ignore", category=PEP440Warning, append=True)
3562
+
3563
+
3564
+ class PkgResourcesDeprecationWarning(Warning):
3565
+ """
3566
+ Base class for warning about deprecations in ``pkg_resources``
3567
+
3568
+ This class is not derived from ``DeprecationWarning``, and as such is
3569
+ visible by default.
3570
+ """
3571
+
3572
+
3573
+ # Ported from ``setuptools`` to avoid introducing an import inter-dependency:
3574
+ _LOCALE_ENCODING = "locale" if sys.version_info >= (3, 10) else None
3575
+
3576
+
3577
+ def _read_utf8_with_fallback(file: str, fallback_encoding=_LOCALE_ENCODING) -> str:
3578
+ """See setuptools.unicode_utils._read_utf8_with_fallback"""
3579
+ try:
3580
+ with open(file, "r", encoding="utf-8") as f:
3581
+ return f.read()
3582
+ except UnicodeDecodeError: # pragma: no cover
3583
+ msg = f"""\
3584
+ ********************************************************************************
3585
+ `encoding="utf-8"` fails with {file!r}, trying `encoding={fallback_encoding!r}`.
3586
+
3587
+ This fallback behaviour is considered **deprecated** and future versions of
3588
+ `setuptools/pkg_resources` may not implement it.
3589
+
3590
+ Please encode {file!r} with "utf-8" to ensure future builds will succeed.
3591
+
3592
+ If this file was produced by `setuptools` itself, cleaning up the cached files
3593
+ and re-building/re-installing the package with a newer version of `setuptools`
3594
+ (e.g. by updating `build-system.requires` in its `pyproject.toml`)
3595
+ might solve the problem.
3596
+ ********************************************************************************
3597
+ """
3598
+ # TODO: Add a deadline?
3599
+ # See comment in setuptools.unicode_utils._Utf8EncodingNeeded
3600
+ warnings.warn(msg, PkgResourcesDeprecationWarning, stacklevel=2)
3601
+ with open(file, "r", encoding=fallback_encoding) as f:
3602
+ return f.read()
3603
+
3604
+
3605
+ # from jaraco.functools 1.3
3606
+ def _call_aside(f, *args, **kwargs):
3607
+ f(*args, **kwargs)
3608
+ return f
3609
+
3610
+
3611
+ @_call_aside
3612
+ def _initialize(g=globals()):
3613
+ "Set up global resource manager (deliberately not state-saved)"
3614
+ manager = ResourceManager()
3615
+ g['_manager'] = manager
3616
+ g.update(
3617
+ (name, getattr(manager, name))
3618
+ for name in dir(manager)
3619
+ if not name.startswith('_')
3620
+ )
3621
+
3622
+
3623
+ @_call_aside
3624
+ def _initialize_master_working_set():
3625
+ """
3626
+ Prepare the master working set and make the ``require()``
3627
+ API available.
3628
+
3629
+ This function has explicit effects on the global state
3630
+ of pkg_resources. It is intended to be invoked once at
3631
+ the initialization of this module.
3632
+
3633
+ Invocation by other packages is unsupported and done
3634
+ at their own risk.
3635
+ """
3636
+ working_set = _declare_state('object', 'working_set', WorkingSet._build_master())
3637
+
3638
+ require = working_set.require
3639
+ iter_entry_points = working_set.iter_entry_points
3640
+ add_activation_listener = working_set.subscribe
3641
+ run_script = working_set.run_script
3642
+ # backward compatibility
3643
+ run_main = run_script
3644
+ # Activate all distributions already on sys.path with replace=False and
3645
+ # ensure that all distributions added to the working set in the future
3646
+ # (e.g. by calling ``require()``) will get activated as well,
3647
+ # with higher priority (replace=True).
3648
+ tuple(dist.activate(replace=False) for dist in working_set)
3649
+ add_activation_listener(
3650
+ lambda dist: dist.activate(replace=True),
3651
+ existing=False,
3652
+ )
3653
+ working_set.entries = []
3654
+ # match order
3655
+ list(map(working_set.add_entry, sys.path))
3656
+ globals().update(locals())
3657
+
3658
+
3659
+ if TYPE_CHECKING:
3660
+ # All of these are set by the @_call_aside methods above
3661
+ __resource_manager = ResourceManager() # Won't exist at runtime
3662
+ resource_exists = __resource_manager.resource_exists
3663
+ resource_isdir = __resource_manager.resource_isdir
3664
+ resource_filename = __resource_manager.resource_filename
3665
+ resource_stream = __resource_manager.resource_stream
3666
+ resource_string = __resource_manager.resource_string
3667
+ resource_listdir = __resource_manager.resource_listdir
3668
+ set_extraction_path = __resource_manager.set_extraction_path
3669
+ cleanup_resources = __resource_manager.cleanup_resources
3670
+
3671
+ working_set = WorkingSet()
3672
+ require = working_set.require
3673
+ iter_entry_points = working_set.iter_entry_points
3674
+ add_activation_listener = working_set.subscribe
3675
+ run_script = working_set.run_script
3676
+ run_main = run_script