je-editor 0.0.57__py3-none-any.whl → 0.0.59__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3194) hide show
  1. je_editor/__init__.py +1 -1
  2. je_editor/pyside_ui/editor_main_ui/main_editor.py +20 -0
  3. je_editor/pyside_ui/menu/set_menu.py +17 -0
  4. je_editor/pyside_ui/ui_setting/ui_setting.py +27 -0
  5. je_editor/start_editor.py +18 -0
  6. je_editor/tkinter_ui/__init__.py +1 -1
  7. je_editor/tkinter_ui/editor_main_ui/__init__.py +1 -1
  8. je_editor/tkinter_ui/editor_main_ui/tkinter_editor.py +1 -4
  9. je_editor/tkinter_ui/editor_main_ui/ui_setting/ui_setting.py +1 -1
  10. je_editor/tkinter_ui/ui_event/__init__.py +1 -1
  11. je_editor/tkinter_ui/ui_event/auto_save/__init__.py +1 -1
  12. je_editor/tkinter_ui/ui_event/auto_save/start_auto_save/start_auto_save.py +17 -17
  13. je_editor/tkinter_ui/ui_event/change_font/__init__.py +1 -1
  14. je_editor/tkinter_ui/ui_event/change_font/change_font.py +38 -38
  15. je_editor/tkinter_ui/ui_event/close/__init__.py +1 -1
  16. je_editor/tkinter_ui/ui_event/close/close_event.py +12 -12
  17. je_editor/tkinter_ui/ui_event/encoding/set_encoding.py +10 -10
  18. je_editor/tkinter_ui/ui_event/execute/__init__.py +1 -1
  19. je_editor/tkinter_ui/ui_event/execute/execute_code/__init__.py +1 -1
  20. je_editor/tkinter_ui/ui_event/execute/execute_code/exec_code.py +22 -22
  21. je_editor/tkinter_ui/ui_event/execute/execute_shell_command/__init__.py +1 -1
  22. je_editor/tkinter_ui/ui_event/execute/execute_shell_command/run_on_shell.py +12 -12
  23. je_editor/tkinter_ui/ui_event/language/__init__.py +1 -1
  24. je_editor/tkinter_ui/ui_event/language/set_language.py +13 -13
  25. je_editor/tkinter_ui/ui_event/open_file/__init__.py +1 -1
  26. je_editor/tkinter_ui/ui_event/open_file/open_file_to_read/__init__.py +1 -1
  27. je_editor/tkinter_ui/ui_event/open_file/open_file_to_read/open_file_to_read.py +20 -20
  28. je_editor/tkinter_ui/ui_event/open_file/open_last_edit_file/__init__.py +1 -1
  29. je_editor/tkinter_ui/ui_event/open_file/open_last_edit_file/open_last_edit_file.py +17 -17
  30. je_editor/tkinter_ui/ui_event/save_file/save_file_to_open/__init__.py +1 -1
  31. je_editor/tkinter_ui/ui_event/save_file/save_file_to_open/save_file_to_open.py +19 -19
  32. je_editor/tkinter_ui/ui_event/tag_keyword/__init__.py +1 -1
  33. je_editor/tkinter_ui/ui_event/tag_keyword/tag_keyword.py +49 -49
  34. je_editor/tkinter_ui/ui_event/text_process/program_exec/__init__.py +1 -1
  35. je_editor/tkinter_ui/ui_event/text_process/program_exec/code_exec_manager.py +169 -169
  36. je_editor/tkinter_ui/ui_event/text_process/program_exec/process_error.py +10 -10
  37. je_editor/tkinter_ui/ui_event/text_process/shell/__init__.py +1 -1
  38. je_editor/utils/__init__.py +1 -1
  39. je_editor/utils/editor_content/__init__.py +1 -1
  40. je_editor/utils/editor_content/content_save.py +66 -66
  41. je_editor/utils/editor_content/editor_content_data.py +19 -19
  42. je_editor/utils/encoding/__init__.py +1 -1
  43. je_editor/utils/encoding/encoding_data_module.py +101 -101
  44. je_editor/utils/exception/__init__.py +1 -1
  45. je_editor/utils/exception/exception_tags.py +33 -33
  46. je_editor/utils/exception/exceptions.py +30 -30
  47. je_editor/utils/file/open/__init__.py +1 -1
  48. je_editor/utils/file/open/open_file.py +52 -52
  49. je_editor/utils/file/save/save_file.py +81 -81
  50. je_editor/utils/font/__init__.py +1 -1
  51. je_editor/utils/font/font.py +20 -20
  52. je_editor/utils/json_format/__init__.py +1 -1
  53. je_editor/utils/json_format/json_process.py +28 -28
  54. je_editor/utils/keyword/__init__.py +1 -1
  55. je_editor/utils/keyword/keyword_list.py +4 -4
  56. je_editor/utils/language/__init__.py +1 -1
  57. je_editor/utils/language/language_data_module.py +9 -9
  58. je_editor/utils/language_data_module/__init__.py +1 -1
  59. je_editor/utils/language_data_module/language_compiler_data_module.py +7 -7
  60. je_editor/utils/language_data_module/language_param_data_module.py +7 -7
  61. je_editor/utils/theme/theme.py +6 -6
  62. {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/LICENSE +21 -21
  63. {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/METADATA +2 -1
  64. je_editor-0.0.59.dist-info/RECORD +107 -0
  65. je_editor-0.0.59.dist-info/top_level.txt +1 -0
  66. deprecation_for_old_python/dev_setup.py +0 -30
  67. deprecation_for_old_python/setup.py +0 -30
  68. docs/source/conf.py +0 -54
  69. je_editor-0.0.57.dist-info/RECORD +0 -3228
  70. je_editor-0.0.57.dist-info/top_level.txt +0 -6
  71. start_editor/start_editor.py +0 -3
  72. test/tkinter_ui/unit_test/extend_test/extend_editor.py +0 -11
  73. test/tkinter_ui/unit_test/file/save_and_open/save_and_open.py +0 -5
  74. test/tkinter_ui/unit_test/tkinter_test/editor/editor_with_theme.py +0 -7
  75. test/tkinter_ui/unit_test/tkinter_test/editor/import_tkinter_test.py +0 -3
  76. test/tkinter_ui/unit_test/tkinter_test/font/test_font.py +0 -14
  77. venv/Lib/site-packages/PyInstaller/__init__.py +0 -65
  78. venv/Lib/site-packages/PyInstaller/__main__.py +0 -198
  79. venv/Lib/site-packages/PyInstaller/_recursion_too_deep_message.py +0 -45
  80. venv/Lib/site-packages/PyInstaller/_shared_with_waf.py +0 -86
  81. venv/Lib/site-packages/PyInstaller/archive/__init__.py +0 -1
  82. venv/Lib/site-packages/PyInstaller/archive/pyz_crypto.py +0 -48
  83. venv/Lib/site-packages/PyInstaller/archive/readers.py +0 -242
  84. venv/Lib/site-packages/PyInstaller/archive/writers.py +0 -583
  85. venv/Lib/site-packages/PyInstaller/building/__init__.py +0 -1
  86. venv/Lib/site-packages/PyInstaller/building/api.py +0 -1064
  87. venv/Lib/site-packages/PyInstaller/building/build_main.py +0 -971
  88. venv/Lib/site-packages/PyInstaller/building/datastruct.py +0 -295
  89. venv/Lib/site-packages/PyInstaller/building/icon.py +0 -85
  90. venv/Lib/site-packages/PyInstaller/building/makespec.py +0 -836
  91. venv/Lib/site-packages/PyInstaller/building/osx.py +0 -267
  92. venv/Lib/site-packages/PyInstaller/building/splash.py +0 -486
  93. venv/Lib/site-packages/PyInstaller/building/splash_templates.py +0 -229
  94. venv/Lib/site-packages/PyInstaller/building/templates.py +0 -142
  95. venv/Lib/site-packages/PyInstaller/building/toc_conversion.py +0 -156
  96. venv/Lib/site-packages/PyInstaller/building/utils.py +0 -741
  97. venv/Lib/site-packages/PyInstaller/compat.py +0 -771
  98. venv/Lib/site-packages/PyInstaller/config.py +0 -54
  99. venv/Lib/site-packages/PyInstaller/configure.py +0 -95
  100. venv/Lib/site-packages/PyInstaller/depend/__init__.py +0 -1
  101. venv/Lib/site-packages/PyInstaller/depend/analysis.py +0 -896
  102. venv/Lib/site-packages/PyInstaller/depend/bindepend.py +0 -1043
  103. venv/Lib/site-packages/PyInstaller/depend/bytecode.py +0 -318
  104. venv/Lib/site-packages/PyInstaller/depend/dylib.py +0 -453
  105. venv/Lib/site-packages/PyInstaller/depend/imphook.py +0 -546
  106. venv/Lib/site-packages/PyInstaller/depend/imphookapi.py +0 -468
  107. venv/Lib/site-packages/PyInstaller/depend/utils.py +0 -420
  108. venv/Lib/site-packages/PyInstaller/exceptions.py +0 -30
  109. venv/Lib/site-packages/PyInstaller/fake-modules/pyi_splash.py +0 -223
  110. venv/Lib/site-packages/PyInstaller/hooks/__init__.py +0 -1
  111. venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.Image.py +0 -17
  112. venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.ImageFilter.py +0 -13
  113. venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.SpiderImagePlugin.py +0 -14
  114. venv/Lib/site-packages/PyInstaller/hooks/hook-PIL.py +0 -21
  115. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QAxContainer.py +0 -14
  116. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qsci.py +0 -14
  117. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt.py +0 -29
  118. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DAnimation.py +0 -14
  119. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DCore.py +0 -14
  120. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DExtras.py +0 -14
  121. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DInput.py +0 -14
  122. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DLogic.py +0 -14
  123. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DRender.py +0 -14
  124. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtBluetooth.py +0 -14
  125. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtChart.py +0 -14
  126. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtCore.py +0 -14
  127. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDBus.py +0 -14
  128. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDataVisualization.py +0 -14
  129. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDesigner.py +0 -14
  130. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtGui.py +0 -14
  131. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtHelp.py +0 -14
  132. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtLocation.py +0 -14
  133. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMacExtras.py +0 -14
  134. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMultimedia.py +0 -14
  135. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMultimediaWidgets.py +0 -14
  136. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetwork.py +0 -15
  137. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetworkAuth.py +0 -14
  138. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNfc.py +0 -14
  139. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtOpenGL.py +0 -14
  140. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPositioning.py +0 -14
  141. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPrintSupport.py +0 -14
  142. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPurchasing.py +0 -14
  143. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQml.py +0 -17
  144. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick.py +0 -14
  145. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick3D.py +0 -14
  146. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuickWidgets.py +0 -14
  147. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtRemoteObjects.py +0 -14
  148. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtScript.py +0 -14
  149. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSensors.py +0 -14
  150. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSerialPort.py +0 -14
  151. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSql.py +0 -14
  152. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSvg.py +0 -14
  153. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtTest.py +0 -14
  154. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtTextToSpeech.py +0 -14
  155. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebChannel.py +0 -14
  156. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngine.py +0 -14
  157. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngineCore.py +0 -22
  158. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngineWidgets.py +0 -14
  159. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKit.py +0 -14
  160. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKitWidgets.py +0 -14
  161. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebSockets.py +0 -14
  162. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWidgets.py +0 -14
  163. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWinExtras.py +0 -14
  164. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtX11Extras.py +0 -14
  165. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtXml.py +0 -14
  166. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtXmlPatterns.py +0 -14
  167. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.py +0 -26
  168. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.uic.py +0 -17
  169. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QAxContainer.py +0 -14
  170. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qsci.py +0 -14
  171. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DAnimation.py +0 -14
  172. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DCore.py +0 -14
  173. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DExtras.py +0 -14
  174. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DInput.py +0 -14
  175. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DLogic.py +0 -14
  176. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DRender.py +0 -16
  177. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtBluetooth.py +0 -14
  178. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtCharts.py +0 -14
  179. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtCore.py +0 -14
  180. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDBus.py +0 -14
  181. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDataVisualization.py +0 -14
  182. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDesigner.py +0 -14
  183. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtGui.py +0 -14
  184. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtHelp.py +0 -14
  185. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtMultimedia.py +0 -14
  186. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtMultimediaWidgets.py +0 -14
  187. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetwork.py +0 -15
  188. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetworkAuth.py +0 -14
  189. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNfc.py +0 -14
  190. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGL.py +0 -14
  191. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGLWidgets.py +0 -14
  192. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdf.py +0 -14
  193. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdfWidgets.py +0 -14
  194. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPositioning.py +0 -14
  195. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPrintSupport.py +0 -14
  196. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQml.py +0 -17
  197. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick.py +0 -14
  198. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick3D.py +0 -14
  199. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuickWidgets.py +0 -14
  200. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtRemoteObjects.py +0 -14
  201. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSensors.py +0 -14
  202. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSerialPort.py +0 -14
  203. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSql.py +0 -14
  204. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvg.py +0 -14
  205. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvgWidgets.py +0 -14
  206. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtTest.py +0 -14
  207. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebChannel.py +0 -14
  208. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineCore.py +0 -27
  209. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineQuick.py +0 -14
  210. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineWidgets.py +0 -14
  211. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebSockets.py +0 -14
  212. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWidgets.py +0 -14
  213. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtXml.py +0 -14
  214. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.py +0 -23
  215. venv/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.uic.py +0 -17
  216. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DAnimation.py +0 -14
  217. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DCore.py +0 -14
  218. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DExtras.py +0 -14
  219. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DInput.py +0 -14
  220. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DLogic.py +0 -14
  221. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DRender.py +0 -14
  222. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtAxContainer.py +0 -14
  223. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtCharts.py +0 -14
  224. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtConcurrent.py +0 -14
  225. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtCore.py +0 -14
  226. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtDataVisualization.py +0 -14
  227. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtGui.py +0 -14
  228. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtHelp.py +0 -14
  229. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtLocation.py +0 -14
  230. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMacExtras.py +0 -14
  231. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMultimedia.py +0 -19
  232. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMultimediaWidgets.py +0 -14
  233. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtNetwork.py +0 -15
  234. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtOpenGL.py +0 -14
  235. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtOpenGLFunctions.py +0 -14
  236. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtPositioning.py +0 -14
  237. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtPrintSupport.py +0 -14
  238. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQml.py +0 -19
  239. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuick.py +0 -14
  240. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuickControls2.py +0 -14
  241. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuickWidgets.py +0 -14
  242. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtRemoteObjects.py +0 -14
  243. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScript.py +0 -14
  244. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScriptTools.py +0 -14
  245. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScxml.py +0 -14
  246. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSensors.py +0 -14
  247. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSerialPort.py +0 -14
  248. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSql.py +0 -14
  249. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSvg.py +0 -14
  250. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtTest.py +0 -14
  251. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtTextToSpeech.py +0 -14
  252. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtUiTools.py +0 -15
  253. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebChannel.py +0 -14
  254. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngine.py +0 -14
  255. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngineCore.py +0 -22
  256. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngineWidgets.py +0 -14
  257. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebKit.py +0 -14
  258. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebKitWidgets.py +0 -14
  259. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebSockets.py +0 -14
  260. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWidgets.py +0 -14
  261. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWinExtras.py +0 -14
  262. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtX11Extras.py +0 -14
  263. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtXml.py +0 -14
  264. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtXmlPatterns.py +0 -14
  265. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qwt5.py +0 -31
  266. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide2.py +0 -22
  267. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DAnimation.py +0 -14
  268. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DCore.py +0 -14
  269. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DExtras.py +0 -14
  270. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DInput.py +0 -14
  271. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DLogic.py +0 -14
  272. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DRender.py +0 -14
  273. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtAxContainer.py +0 -14
  274. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtBluetooth.py +0 -14
  275. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtCharts.py +0 -14
  276. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtConcurrent.py +0 -14
  277. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtCore.py +0 -14
  278. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDBus.py +0 -14
  279. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDataVisualization.py +0 -14
  280. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDesigner.py +0 -14
  281. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtGui.py +0 -14
  282. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtHelp.py +0 -14
  283. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtHttpServer.py +0 -14
  284. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtMultimedia.py +0 -19
  285. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtMultimediaWidgets.py +0 -14
  286. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNetwork.py +0 -15
  287. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNetworkAuth.py +0 -14
  288. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNfc.py +0 -14
  289. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtOpenGL.py +0 -14
  290. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtOpenGLWidgets.py +0 -14
  291. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPdf.py +0 -14
  292. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPdfWidgets.py +0 -14
  293. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPositioning.py +0 -14
  294. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPrintSupport.py +0 -14
  295. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQml.py +0 -17
  296. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuick.py +0 -14
  297. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuick3D.py +0 -14
  298. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuickControls2.py +0 -16
  299. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuickWidgets.py +0 -14
  300. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtRemoteObjects.py +0 -14
  301. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtScxml.py +0 -14
  302. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSensors.py +0 -14
  303. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSerialPort.py +0 -14
  304. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSpatialAudio.py +0 -14
  305. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSql.py +0 -14
  306. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtStateMachine.py +0 -14
  307. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSvg.py +0 -14
  308. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSvgWidgets.py +0 -14
  309. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtTest.py +0 -14
  310. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtUiTools.py +0 -14
  311. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebChannel.py +0 -14
  312. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineCore.py +0 -29
  313. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineQuick.py +0 -14
  314. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineWidgets.py +0 -14
  315. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebSockets.py +0 -14
  316. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWidgets.py +0 -14
  317. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtXml.py +0 -14
  318. venv/Lib/site-packages/PyInstaller/hooks/hook-PySide6.py +0 -25
  319. venv/Lib/site-packages/PyInstaller/hooks/hook-_tkinter.py +0 -29
  320. venv/Lib/site-packages/PyInstaller/hooks/hook-babel.py +0 -16
  321. venv/Lib/site-packages/PyInstaller/hooks/hook-difflib.py +0 -13
  322. venv/Lib/site-packages/PyInstaller/hooks/hook-distutils.py +0 -33
  323. venv/Lib/site-packages/PyInstaller/hooks/hook-distutils.util.py +0 -13
  324. venv/Lib/site-packages/PyInstaller/hooks/hook-django.contrib.sessions.py +0 -14
  325. venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.cache.py +0 -14
  326. venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.mail.py +0 -25
  327. venv/Lib/site-packages/PyInstaller/hooks/hook-django.core.management.py +0 -19
  328. venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.mysql.base.py +0 -13
  329. venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.oracle.base.py +0 -12
  330. venv/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.py +0 -25
  331. venv/Lib/site-packages/PyInstaller/hooks/hook-django.py +0 -92
  332. venv/Lib/site-packages/PyInstaller/hooks/hook-django.template.loaders.py +0 -14
  333. venv/Lib/site-packages/PyInstaller/hooks/hook-encodings.py +0 -14
  334. venv/Lib/site-packages/PyInstaller/hooks/hook-gevent.py +0 -24
  335. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.py +0 -12
  336. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Adw.py +0 -16
  337. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Atk.py +0 -29
  338. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Champlain.py +0 -16
  339. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Clutter.py +0 -16
  340. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GIRepository.py +0 -16
  341. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GLib.py +0 -42
  342. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GModule.py +0 -16
  343. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GObject.py +0 -19
  344. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gdk.py +0 -36
  345. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GdkPixbuf.py +0 -141
  346. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gio.py +0 -63
  347. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Graphene.py +0 -16
  348. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gsk.py +0 -16
  349. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gst.py +0 -93
  350. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstAllocators.py +0 -16
  351. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstApp.py +0 -16
  352. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstAudio.py +0 -16
  353. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstBadAudio.py +0 -16
  354. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstBase.py +0 -16
  355. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstCheck.py +0 -16
  356. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstCodecs.py +0 -16
  357. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstController.py +0 -16
  358. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGL.py +0 -16
  359. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLEGL.py +0 -16
  360. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLWayland.py +0 -16
  361. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLX11.py +0 -16
  362. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstInsertBin.py +0 -16
  363. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstMpegts.py +0 -16
  364. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstNet.py +0 -16
  365. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPbutils.py +0 -16
  366. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPlay.py +0 -16
  367. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPlayer.py +0 -16
  368. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtp.py +0 -16
  369. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtsp.py +0 -16
  370. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtspServer.py +0 -16
  371. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstSdp.py +0 -16
  372. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstTag.py +0 -16
  373. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstTranscoder.py +0 -16
  374. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVideo.py +0 -16
  375. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkan.py +0 -16
  376. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkanWayland.py +0 -16
  377. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkanXCB.py +0 -16
  378. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstWebRTC.py +0 -16
  379. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gtk.py +0 -59
  380. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkChamplain.py +0 -16
  381. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkClutter.py +0 -16
  382. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkSource.py +0 -31
  383. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkosxApplication.py +0 -18
  384. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.HarfBuzz.py +0 -16
  385. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Pango.py +0 -16
  386. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.PangoCairo.py +0 -16
  387. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.cairo.py +0 -16
  388. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.freetype2.py +0 -16
  389. venv/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.xlib.py +0 -16
  390. venv/Lib/site-packages/PyInstaller/hooks/hook-heapq.py +0 -13
  391. venv/Lib/site-packages/PyInstaller/hooks/hook-idlelib.py +0 -14
  392. venv/Lib/site-packages/PyInstaller/hooks/hook-importlib_metadata.py +0 -24
  393. venv/Lib/site-packages/PyInstaller/hooks/hook-importlib_resources.py +0 -22
  394. venv/Lib/site-packages/PyInstaller/hooks/hook-keyring.py +0 -19
  395. venv/Lib/site-packages/PyInstaller/hooks/hook-kivy.py +0 -25
  396. venv/Lib/site-packages/PyInstaller/hooks/hook-lib2to3.py +0 -16
  397. venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.backends.py +0 -218
  398. venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.numerix.py +0 -21
  399. venv/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.py +0 -23
  400. venv/Lib/site-packages/PyInstaller/hooks/hook-multiprocessing.util.py +0 -16
  401. venv/Lib/site-packages/PyInstaller/hooks/hook-numpy._pytesttester.py +0 -16
  402. venv/Lib/site-packages/PyInstaller/hooks/hook-numpy.py +0 -59
  403. venv/Lib/site-packages/PyInstaller/hooks/hook-packaging.py +0 -13
  404. venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.io.formats.style.py +0 -18
  405. venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.plotting.py +0 -18
  406. venv/Lib/site-packages/PyInstaller/hooks/hook-pandas.py +0 -20
  407. venv/Lib/site-packages/PyInstaller/hooks/hook-pickle.py +0 -13
  408. venv/Lib/site-packages/PyInstaller/hooks/hook-pkg_resources.py +0 -57
  409. venv/Lib/site-packages/PyInstaller/hooks/hook-platform.py +0 -16
  410. venv/Lib/site-packages/PyInstaller/hooks/hook-pygments.py +0 -29
  411. venv/Lib/site-packages/PyInstaller/hooks/hook-pytz.py +0 -16
  412. venv/Lib/site-packages/PyInstaller/hooks/hook-pytzdata.py +0 -14
  413. venv/Lib/site-packages/PyInstaller/hooks/hook-qtawesome.py +0 -19
  414. venv/Lib/site-packages/PyInstaller/hooks/hook-scapy.layers.all.py +0 -19
  415. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.io.matlab.py +0 -13
  416. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.linalg.py +0 -13
  417. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.py +0 -35
  418. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.sparse.csgraph.py +0 -13
  419. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.spatial.transform.rotation.py +0 -17
  420. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.special._ellip_harm_2.py +0 -30
  421. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.special._ufuncs.py +0 -14
  422. venv/Lib/site-packages/PyInstaller/hooks/hook-scipy.stats._stats.py +0 -15
  423. venv/Lib/site-packages/PyInstaller/hooks/hook-scrapy.py +0 -18
  424. venv/Lib/site-packages/PyInstaller/hooks/hook-setuptools.msvc.py +0 -13
  425. venv/Lib/site-packages/PyInstaller/hooks/hook-setuptools.py +0 -41
  426. venv/Lib/site-packages/PyInstaller/hooks/hook-shelve.py +0 -14
  427. venv/Lib/site-packages/PyInstaller/hooks/hook-sphinx.py +0 -41
  428. venv/Lib/site-packages/PyInstaller/hooks/hook-sqlalchemy.py +0 -77
  429. venv/Lib/site-packages/PyInstaller/hooks/hook-sqlite3.py +0 -19
  430. venv/Lib/site-packages/PyInstaller/hooks/hook-sysconfig.py +0 -29
  431. venv/Lib/site-packages/PyInstaller/hooks/hook-wcwidth.py +0 -14
  432. venv/Lib/site-packages/PyInstaller/hooks/hook-win32ctypes.core.py +0 -21
  433. venv/Lib/site-packages/PyInstaller/hooks/hook-xml.dom.domreg.py +0 -13
  434. venv/Lib/site-packages/PyInstaller/hooks/hook-xml.etree.cElementTree.py +0 -13
  435. venv/Lib/site-packages/PyInstaller/hooks/hook-xml.py +0 -12
  436. venv/Lib/site-packages/PyInstaller/hooks/hook-zope.interface.py +0 -12
  437. venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/__init__.py +0 -1
  438. venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-PyQt5.uic.port_v2.py +0 -15
  439. venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-distutils.py +0 -46
  440. venv/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-pyi_splash.py +0 -36
  441. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/__init__.py +0 -1
  442. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.py +0 -37
  443. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Adw.py +0 -16
  444. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Atk.py +0 -16
  445. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Champlain.py +0 -16
  446. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Clutter.py +0 -16
  447. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GIRepository.py +0 -16
  448. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GLib.py +0 -16
  449. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GModule.py +0 -16
  450. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GObject.py +0 -16
  451. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gdk.py +0 -16
  452. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GdkPixbuf.py +0 -16
  453. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gio.py +0 -16
  454. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Graphene.py +0 -16
  455. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gsk.py +0 -16
  456. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gst.py +0 -16
  457. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAllocators.py +0 -16
  458. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstApp.py +0 -16
  459. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAudio.py +0 -16
  460. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBadAudio.py +0 -16
  461. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBase.py +0 -16
  462. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstCheck.py +0 -16
  463. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstCodecs.py +0 -16
  464. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstController.py +0 -16
  465. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGL.py +0 -16
  466. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLEGL.py +0 -16
  467. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLWayland.py +0 -16
  468. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLX11.py +0 -16
  469. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstInsertBin.py +0 -16
  470. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstMpegts.py +0 -16
  471. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstNet.py +0 -16
  472. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPbutils.py +0 -16
  473. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPlay.py +0 -16
  474. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPlayer.py +0 -16
  475. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtp.py +0 -16
  476. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtsp.py +0 -16
  477. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtspServer.py +0 -16
  478. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstSdp.py +0 -16
  479. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTag.py +0 -16
  480. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTranscoder.py +0 -16
  481. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVideo.py +0 -16
  482. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkan.py +0 -16
  483. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkanWayland.py +0 -16
  484. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkanXCB.py +0 -16
  485. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstWebRTC.py +0 -16
  486. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gtk.py +0 -16
  487. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkChamplain.py +0 -16
  488. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkClutter.py +0 -16
  489. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkSource.py +0 -16
  490. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkosxApplication.py +0 -16
  491. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.HarfBuzz.py +0 -16
  492. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Pango.py +0 -16
  493. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.PangoCairo.py +0 -16
  494. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.cairo.py +0 -16
  495. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.freetype2.py +0 -16
  496. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.xlib.py +0 -16
  497. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-setuptools.extern.six.moves.py +0 -35
  498. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-six.moves.py +0 -60
  499. venv/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py +0 -30
  500. venv/Lib/site-packages/PyInstaller/hooks/rthooks/__init__.py +0 -1
  501. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth__tkinter.py +0 -30
  502. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_django.py +0 -30
  503. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gdkpixbuf.py +0 -35
  504. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gi.py +0 -15
  505. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gio.py +0 -15
  506. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_glib.py +0 -31
  507. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gstreamer.py +0 -26
  508. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gtk.py +0 -21
  509. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py +0 -44
  510. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_kivy.py +0 -18
  511. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_mplconfig.py +0 -38
  512. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py +0 -95
  513. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py +0 -200
  514. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py +0 -86
  515. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt5.py +0 -28
  516. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt5webengine.py +0 -32
  517. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt6.py +0 -28
  518. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt6webengine.py +0 -35
  519. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside2.py +0 -26
  520. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside2webengine.py +0 -25
  521. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside6.py +0 -26
  522. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside6webengine.py +0 -31
  523. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py +0 -35
  524. venv/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_win32comgenpy.py +0 -52
  525. venv/Lib/site-packages/PyInstaller/isolated/__init__.py +0 -31
  526. venv/Lib/site-packages/PyInstaller/isolated/_child.py +0 -95
  527. venv/Lib/site-packages/PyInstaller/isolated/_parent.py +0 -406
  528. venv/Lib/site-packages/PyInstaller/lib/__init__.py +0 -1
  529. venv/Lib/site-packages/PyInstaller/lib/modulegraph/__init__.py +0 -1
  530. venv/Lib/site-packages/PyInstaller/lib/modulegraph/__main__.py +0 -89
  531. venv/Lib/site-packages/PyInstaller/lib/modulegraph/_compat.py +0 -25
  532. venv/Lib/site-packages/PyInstaller/lib/modulegraph/find_modules.py +0 -338
  533. venv/Lib/site-packages/PyInstaller/lib/modulegraph/modulegraph.py +0 -3309
  534. venv/Lib/site-packages/PyInstaller/lib/modulegraph/util.py +0 -149
  535. venv/Lib/site-packages/PyInstaller/lib/modulegraph/zipio.py +0 -418
  536. venv/Lib/site-packages/PyInstaller/loader/__init__.py +0 -1
  537. venv/Lib/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py +0 -92
  538. venv/Lib/site-packages/PyInstaller/loader/pyimod01_archive.py +0 -307
  539. venv/Lib/site-packages/PyInstaller/loader/pyimod02_importers.py +0 -604
  540. venv/Lib/site-packages/PyInstaller/loader/pyimod03_ctypes.py +0 -131
  541. venv/Lib/site-packages/PyInstaller/loader/pyimod04_pywin32.py +0 -48
  542. venv/Lib/site-packages/PyInstaller/log.py +0 -56
  543. venv/Lib/site-packages/PyInstaller/utils/__init__.py +0 -1
  544. venv/Lib/site-packages/PyInstaller/utils/_gitrevision.py +0 -10
  545. venv/Lib/site-packages/PyInstaller/utils/cliutils/__init__.py +0 -1
  546. venv/Lib/site-packages/PyInstaller/utils/cliutils/archive_viewer.py +0 -271
  547. venv/Lib/site-packages/PyInstaller/utils/cliutils/bindepend.py +0 -52
  548. venv/Lib/site-packages/PyInstaller/utils/cliutils/grab_version.py +0 -51
  549. venv/Lib/site-packages/PyInstaller/utils/cliutils/makespec.py +0 -53
  550. venv/Lib/site-packages/PyInstaller/utils/cliutils/set_version.py +0 -42
  551. venv/Lib/site-packages/PyInstaller/utils/conftest.py +0 -576
  552. venv/Lib/site-packages/PyInstaller/utils/git.py +0 -59
  553. venv/Lib/site-packages/PyInstaller/utils/hooks/__init__.py +0 -1397
  554. venv/Lib/site-packages/PyInstaller/utils/hooks/conda.py +0 -400
  555. venv/Lib/site-packages/PyInstaller/utils/hooks/django.py +0 -151
  556. venv/Lib/site-packages/PyInstaller/utils/hooks/gi.py +0 -308
  557. venv/Lib/site-packages/PyInstaller/utils/hooks/qt/__init__.py +0 -845
  558. venv/Lib/site-packages/PyInstaller/utils/hooks/qt/_modules_info.py +0 -439
  559. venv/Lib/site-packages/PyInstaller/utils/hooks/tcl_tk.py +0 -253
  560. venv/Lib/site-packages/PyInstaller/utils/hooks/win32.py +0 -50
  561. venv/Lib/site-packages/PyInstaller/utils/misc.py +0 -223
  562. venv/Lib/site-packages/PyInstaller/utils/osx.py +0 -359
  563. venv/Lib/site-packages/PyInstaller/utils/run_tests.py +0 -69
  564. venv/Lib/site-packages/PyInstaller/utils/tests.py +0 -154
  565. venv/Lib/site-packages/PyInstaller/utils/win32/__init__.py +0 -1
  566. venv/Lib/site-packages/PyInstaller/utils/win32/icon.py +0 -248
  567. venv/Lib/site-packages/PyInstaller/utils/win32/versioninfo.py +0 -585
  568. venv/Lib/site-packages/PyInstaller/utils/win32/winmanifest.py +0 -1083
  569. venv/Lib/site-packages/PyInstaller/utils/win32/winresource.py +0 -245
  570. venv/Lib/site-packages/PyInstaller/utils/win32/winutils.py +0 -358
  571. venv/Lib/site-packages/PySide6/__init__.py +0 -124
  572. venv/Lib/site-packages/PySide6/_config.py +0 -16
  573. venv/Lib/site-packages/PySide6/_git_pyside_version.py +0 -19
  574. venv/Lib/site-packages/PySide6/examples/3d/simple3d/simple3d.py +0 -127
  575. venv/Lib/site-packages/PySide6/examples/axcontainer/axviewer/axviewer.py +0 -47
  576. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/device.py +0 -129
  577. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/main.py +0 -18
  578. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/service.py +0 -48
  579. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/ui_device.py +0 -90
  580. venv/Lib/site-packages/PySide6/examples/bluetooth/btscanner/ui_service.py +0 -57
  581. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/bluetoothbaseclass.py +0 -40
  582. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/connectionhandler.py +0 -51
  583. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/devicefinder.py +0 -122
  584. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/devicehandler.py +0 -307
  585. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/deviceinfo.py +0 -38
  586. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/heartrate_global.py +0 -6
  587. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_game/main.py +0 -53
  588. venv/Lib/site-packages/PySide6/examples/bluetooth/heartrate_server/heartrate_server.py +0 -94
  589. venv/Lib/site-packages/PySide6/examples/charts/areachart/areachart.py +0 -67
  590. venv/Lib/site-packages/PySide6/examples/charts/audio/audio.py +0 -91
  591. venv/Lib/site-packages/PySide6/examples/charts/barchart/barchart.py +0 -69
  592. venv/Lib/site-packages/PySide6/examples/charts/callout/callout.py +0 -220
  593. venv/Lib/site-packages/PySide6/examples/charts/chartthemes/main.py +0 -369
  594. venv/Lib/site-packages/PySide6/examples/charts/chartthemes/ui_themewidget.py +0 -91
  595. venv/Lib/site-packages/PySide6/examples/charts/donutbreakdown/donutbreakdown.py +0 -148
  596. venv/Lib/site-packages/PySide6/examples/charts/dynamicspline/chart.py +0 -52
  597. venv/Lib/site-packages/PySide6/examples/charts/dynamicspline/main.py +0 -27
  598. venv/Lib/site-packages/PySide6/examples/charts/legend/legend.py +0 -225
  599. venv/Lib/site-packages/PySide6/examples/charts/lineandbar/lineandbar.py +0 -81
  600. venv/Lib/site-packages/PySide6/examples/charts/linechart/linechart.py +0 -47
  601. venv/Lib/site-packages/PySide6/examples/charts/logvalueaxis/logvalueaxis.py +0 -57
  602. venv/Lib/site-packages/PySide6/examples/charts/memoryusage/memoryusage.py +0 -92
  603. venv/Lib/site-packages/PySide6/examples/charts/modeldata/modeldata.py +0 -144
  604. venv/Lib/site-packages/PySide6/examples/charts/nesteddonuts/nesteddonuts.py +0 -100
  605. venv/Lib/site-packages/PySide6/examples/charts/percentbarchart/percentbarchart.py +0 -63
  606. venv/Lib/site-packages/PySide6/examples/charts/piechart/piechart.py +0 -50
  607. venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/pointselectionandmarkers.py +0 -127
  608. venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/rc_markers.py +0 -275
  609. venv/Lib/site-packages/PySide6/examples/charts/pointselectionandmarkers/utilities.py +0 -67
  610. venv/Lib/site-packages/PySide6/examples/charts/qmlpolarchart/qmlpolarchart.py +0 -28
  611. venv/Lib/site-packages/PySide6/examples/charts/temperaturerecords/temperaturerecords.py +0 -60
  612. venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/dialog.py +0 -93
  613. venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/main.py +0 -15
  614. venv/Lib/site-packages/PySide6/examples/corelib/ipc/sharedmemory/ui_dialog.py +0 -57
  615. venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mainwindow.py +0 -161
  616. venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mimetypemodel.py +0 -136
  617. venv/Lib/site-packages/PySide6/examples/corelib/mimetypesbrowser/mimetypesbrowser.py +0 -24
  618. venv/Lib/site-packages/PySide6/examples/corelib/settingseditor/settingseditor.py +0 -757
  619. venv/Lib/site-packages/PySide6/examples/corelib/threads/mandelbrot.py +0 -352
  620. venv/Lib/site-packages/PySide6/examples/datavisualization/bars3d/bars3d.py +0 -80
  621. venv/Lib/site-packages/PySide6/examples/datavisualization/minimalsurface/main.py +0 -54
  622. venv/Lib/site-packages/PySide6/examples/datavisualization/surface/main.py +0 -189
  623. venv/Lib/site-packages/PySide6/examples/datavisualization/surface/surfacegraph.py +0 -253
  624. venv/Lib/site-packages/PySide6/examples/datavisualization/surface_model_numpy/main.py +0 -189
  625. venv/Lib/site-packages/PySide6/examples/datavisualization/surface_model_numpy/surfacegraph.py +0 -295
  626. venv/Lib/site-packages/PySide6/examples/datavisualization/surface_numpy/main.py +0 -189
  627. venv/Lib/site-packages/PySide6/examples/datavisualization/surface_numpy/surfacegraph.py +0 -253
  628. venv/Lib/site-packages/PySide6/examples/dbus/listnames/listnames.py +0 -54
  629. venv/Lib/site-packages/PySide6/examples/dbus/pingpong/ping.py +0 -39
  630. venv/Lib/site-packages/PySide6/examples/dbus/pingpong/pong.py +0 -44
  631. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/main.py +0 -16
  632. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/registertictactoe.py +0 -13
  633. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoe.py +0 -133
  634. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoeplugin.py +0 -71
  635. venv/Lib/site-packages/PySide6/examples/designer/taskmenuextension/tictactoetaskmenu.py +0 -68
  636. venv/Lib/site-packages/PySide6/examples/external/matplotlib/widget3d/widget3d.py +0 -207
  637. venv/Lib/site-packages/PySide6/examples/external/matplotlib/widget_gaussian/widget_gaussian.py +0 -75
  638. venv/Lib/site-packages/PySide6/examples/external/networkx/main.py +0 -346
  639. venv/Lib/site-packages/PySide6/examples/external/opencv/webcam_pattern_detection.py +0 -170
  640. venv/Lib/site-packages/PySide6/examples/external/pandas/dataframe_model.py +0 -82
  641. venv/Lib/site-packages/PySide6/examples/external/scikit/staining_colors_separation.py +0 -147
  642. venv/Lib/site-packages/PySide6/examples/gui/analogclock/main.py +0 -77
  643. venv/Lib/site-packages/PySide6/examples/httpserver/afterrequest/main.py +0 -36
  644. venv/Lib/site-packages/PySide6/examples/multimedia/audiooutput/audiooutput.py +0 -272
  645. venv/Lib/site-packages/PySide6/examples/multimedia/audiosource/audiosource.py +0 -204
  646. venv/Lib/site-packages/PySide6/examples/multimedia/camera/camera.py +0 -172
  647. venv/Lib/site-packages/PySide6/examples/multimedia/player/player.py +0 -194
  648. venv/Lib/site-packages/PySide6/examples/network/blockingfortuneclient/blockingfortuneclient.py +0 -186
  649. venv/Lib/site-packages/PySide6/examples/network/downloader/downloader.py +0 -178
  650. venv/Lib/site-packages/PySide6/examples/network/fortuneclient/fortuneclient.py +0 -126
  651. venv/Lib/site-packages/PySide6/examples/network/fortuneserver/fortuneserver.py +0 -82
  652. venv/Lib/site-packages/PySide6/examples/network/googlesuggest/googlesuggest.py +0 -137
  653. venv/Lib/site-packages/PySide6/examples/network/googlesuggest/main.py +0 -14
  654. venv/Lib/site-packages/PySide6/examples/network/googlesuggest/searchbox.py +0 -27
  655. venv/Lib/site-packages/PySide6/examples/network/loopback/dialog.py +0 -151
  656. venv/Lib/site-packages/PySide6/examples/network/loopback/main.py +0 -15
  657. venv/Lib/site-packages/PySide6/examples/network/threadedfortuneserver/threadedfortuneserver.py +0 -116
  658. venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/main.py +0 -28
  659. venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/redditmodel.py +0 -70
  660. venv/Lib/site-packages/PySide6/examples/networkauth/redditclient/redditwrapper.py +0 -91
  661. venv/Lib/site-packages/PySide6/examples/opengl/contextinfo/contextinfo.py +0 -262
  662. venv/Lib/site-packages/PySide6/examples/opengl/hellogl2/hellogl2.py +0 -440
  663. venv/Lib/site-packages/PySide6/examples/opengl/textures/textures.py +0 -211
  664. venv/Lib/site-packages/PySide6/examples/opengl/textures/textures_rc.py +0 -762
  665. venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/glwidget.py +0 -79
  666. venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/main.py +0 -93
  667. venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/mainwindow.py +0 -24
  668. venv/Lib/site-packages/PySide6/examples/opengl/threadedqopenglwidget/renderer.py +0 -326
  669. venv/Lib/site-packages/PySide6/examples/pdf/quickpdfviewer/main.py +0 -49
  670. venv/Lib/site-packages/PySide6/examples/pdf/quickpdfviewer/rc_viewer.py +0 -5505
  671. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/main.py +0 -27
  672. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/mainwindow.py +0 -141
  673. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/resources_rc.py +0 -3468
  674. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/ui_mainwindow.py +0 -259
  675. venv/Lib/site-packages/PySide6/examples/pdfwidgets/pdfviewer/zoomselector.py +0 -59
  676. venv/Lib/site-packages/PySide6/examples/qml/editingmodel/main.py +0 -21
  677. venv/Lib/site-packages/PySide6/examples/qml/editingmodel/model.py +0 -157
  678. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/adding/main.py +0 -30
  679. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/adding/person.py +0 -35
  680. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/birthdayparty.py +0 -63
  681. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/main.py +0 -46
  682. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/attached/person.py +0 -46
  683. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/birthdayparty.py +0 -83
  684. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/happybirthdaysong.py +0 -47
  685. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/main.py +0 -52
  686. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/binding/person.py +0 -53
  687. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/birthdayparty.py +0 -41
  688. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/main.py +0 -36
  689. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/coercion/person.py +0 -47
  690. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/birthdayparty.py +0 -42
  691. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/main.py +0 -36
  692. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/default/person.py +0 -46
  693. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/extended/main.py +0 -95
  694. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/birthdayparty.py +0 -42
  695. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/main.py +0 -43
  696. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/grouped/person.py +0 -85
  697. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/birthdayparty.py +0 -47
  698. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/main.py +0 -32
  699. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/methods/person.py +0 -34
  700. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/birthdayparty.py +0 -41
  701. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/main.py +0 -34
  702. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/properties/person.py +0 -35
  703. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/birthdayparty.py +0 -76
  704. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/happybirthdaysong.py +0 -47
  705. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/main.py +0 -51
  706. venv/Lib/site-packages/PySide6/examples/qml/referenceexamples/valuesource/person.py +0 -46
  707. venv/Lib/site-packages/PySide6/examples/qml/signals/pytoqml1/main.py +0 -31
  708. venv/Lib/site-packages/PySide6/examples/qml/signals/pytoqml2/main.py +0 -54
  709. venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy1/main.py +0 -50
  710. venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy2/main.py +0 -45
  711. venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy3/main.py +0 -33
  712. venv/Lib/site-packages/PySide6/examples/qml/signals/qmltopy4/main.py +0 -33
  713. venv/Lib/site-packages/PySide6/examples/qml/textproperties/main.py +0 -76
  714. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter1-basics/basics.py +0 -68
  715. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter2-methods/methods.py +0 -75
  716. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter3-bindings/bindings.py +0 -79
  717. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter4-customPropertyTypes/customPropertyTypes.py +0 -82
  718. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter5-listproperties/listproperties.py +0 -96
  719. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter6-plugins/Charts/piechart.py +0 -40
  720. venv/Lib/site-packages/PySide6/examples/qml/tutorials/extending/chapter6-plugins/Charts/pieslice.py +0 -52
  721. venv/Lib/site-packages/PySide6/examples/qml/usingmodel/usingmodel.py +0 -70
  722. venv/Lib/site-packages/PySide6/examples/quick/models/objectlistmodel/objectlistmodel.py +0 -61
  723. venv/Lib/site-packages/PySide6/examples/quick/models/stringlistmodel/stringlistmodel.py +0 -26
  724. venv/Lib/site-packages/PySide6/examples/quick/painteditem/painteditem.py +0 -75
  725. venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/cuberenderer.py +0 -186
  726. venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/main.py +0 -20
  727. venv/Lib/site-packages/PySide6/examples/quick/rendercontrol/rendercontrol_opengl/window_singlethreaded.py +0 -275
  728. venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/main.py +0 -27
  729. venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/squircle.py +0 -79
  730. venv/Lib/site-packages/PySide6/examples/quick/scenegraph/openglunderqml/squirclerenderer.py +0 -99
  731. venv/Lib/site-packages/PySide6/examples/quick/shared/shared_rc.py +0 -1884
  732. venv/Lib/site-packages/PySide6/examples/quick/window/main.py +0 -37
  733. venv/Lib/site-packages/PySide6/examples/quick/window/window_rc.py +0 -328
  734. venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/examplepoint.py +0 -51
  735. venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/exampletriangle.py +0 -188
  736. venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/main.py +0 -29
  737. venv/Lib/site-packages/PySide6/examples/quick3d/customgeometry/resources_rc.py +0 -585
  738. venv/Lib/site-packages/PySide6/examples/quick3d/intro/main.py +0 -24
  739. venv/Lib/site-packages/PySide6/examples/quickcontrols2/gallery/gallery.py +0 -52
  740. venv/Lib/site-packages/PySide6/examples/quickcontrols2/gallery/rc_gallery.py +0 -7855
  741. venv/Lib/site-packages/PySide6/examples/remoteobjects/modelview/modelviewclient.py +0 -24
  742. venv/Lib/site-packages/PySide6/examples/remoteobjects/modelview/modelviewserver.py +0 -103
  743. venv/Lib/site-packages/PySide6/examples/samplebinding/main.py +0 -64
  744. venv/Lib/site-packages/PySide6/examples/serialport/terminal/console.py +0 -49
  745. venv/Lib/site-packages/PySide6/examples/serialport/terminal/main.py +0 -17
  746. venv/Lib/site-packages/PySide6/examples/serialport/terminal/mainwindow.py +0 -108
  747. venv/Lib/site-packages/PySide6/examples/serialport/terminal/rc_terminal.py +0 -4464
  748. venv/Lib/site-packages/PySide6/examples/serialport/terminal/settingsdialog.py +0 -179
  749. venv/Lib/site-packages/PySide6/examples/serialport/terminal/ui_mainwindow.py +0 -149
  750. venv/Lib/site-packages/PySide6/examples/serialport/terminal/ui_settingsdialog.py +0 -181
  751. venv/Lib/site-packages/PySide6/examples/spatialaudio/audiopanning/main.py +0 -193
  752. venv/Lib/site-packages/PySide6/examples/sql/books/bookdelegate.py +0 -94
  753. venv/Lib/site-packages/PySide6/examples/sql/books/bookwindow.py +0 -98
  754. venv/Lib/site-packages/PySide6/examples/sql/books/createdb.py +0 -96
  755. venv/Lib/site-packages/PySide6/examples/sql/books/main.py +0 -16
  756. venv/Lib/site-packages/PySide6/examples/sql/books/rc_books.py +0 -88
  757. venv/Lib/site-packages/PySide6/examples/sql/books/ui_bookwindow.py +0 -135
  758. venv/Lib/site-packages/PySide6/examples/sql/relationaltablemodel/connection.py +0 -18
  759. venv/Lib/site-packages/PySide6/examples/sql/relationaltablemodel/relationaltablemodel.py +0 -77
  760. venv/Lib/site-packages/PySide6/examples/statemachine/eventtrans/eventtrans.py +0 -57
  761. venv/Lib/site-packages/PySide6/examples/statemachine/factstates/factstates.py +0 -89
  762. venv/Lib/site-packages/PySide6/examples/statemachine/ping_pong/ping_pong.py +0 -70
  763. venv/Lib/site-packages/PySide6/examples/statemachine/rogue/rogue.py +0 -179
  764. venv/Lib/site-packages/PySide6/examples/statemachine/trafficlight/trafficlight.py +0 -117
  765. venv/Lib/site-packages/PySide6/examples/statemachine/twowaybutton/twowaybutton.py +0 -33
  766. venv/Lib/site-packages/PySide6/examples/texttospeech/hello_speak/hello_speak.py +0 -73
  767. venv/Lib/site-packages/PySide6/examples/uitools/uiloader/uiloader.py +0 -35
  768. venv/Lib/site-packages/PySide6/examples/utils/pyside_config.py +0 -338
  769. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/core.py +0 -25
  770. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/dialog.py +0 -32
  771. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/main.py +0 -62
  772. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/ui_dialog.py +0 -57
  773. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/websocketclientwrapper.py +0 -35
  774. venv/Lib/site-packages/PySide6/examples/webchannel/standalone/websockettransport.py +0 -51
  775. venv/Lib/site-packages/PySide6/examples/webenginequick/nanobrowser/quicknanobrowser.py +0 -65
  776. venv/Lib/site-packages/PySide6/examples/webenginequick/nanobrowser/rc_resources.py +0 -348
  777. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/document.py +0 -24
  778. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/main.py +0 -20
  779. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/mainwindow.py +0 -136
  780. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/previewpage.py +0 -18
  781. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/rc_markdowneditor.py +0 -852
  782. venv/Lib/site-packages/PySide6/examples/webenginewidgets/markdowneditor/ui_mainwindow.py +0 -115
  783. venv/Lib/site-packages/PySide6/examples/webenginewidgets/notifications/main.py +0 -57
  784. venv/Lib/site-packages/PySide6/examples/webenginewidgets/notifications/notificationpopup.py +0 -68
  785. venv/Lib/site-packages/PySide6/examples/webenginewidgets/simplebrowser/simplebrowser.py +0 -70
  786. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/bookmarkwidget.py +0 -239
  787. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/browsertabwidget.py +0 -212
  788. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/downloadwidget.py +0 -111
  789. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/findtoolbar.py +0 -62
  790. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/historywindow.py +0 -66
  791. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/main.py +0 -358
  792. venv/Lib/site-packages/PySide6/examples/webenginewidgets/tabbedbrowser/webengineview.py +0 -56
  793. venv/Lib/site-packages/PySide6/examples/widgetbinding/dialog.py +0 -32
  794. venv/Lib/site-packages/PySide6/examples/widgetbinding/main.py +0 -14
  795. venv/Lib/site-packages/PySide6/examples/widgetbinding/registerwigglywidget.py +0 -31
  796. venv/Lib/site-packages/PySide6/examples/widgetbinding/wigglywidget.py +0 -69
  797. venv/Lib/site-packages/PySide6/examples/widgets/animation/animatedtiles/animatedtiles.py +0 -230
  798. venv/Lib/site-packages/PySide6/examples/widgets/animation/animatedtiles/animatedtiles_rc.py +0 -6108
  799. venv/Lib/site-packages/PySide6/examples/widgets/animation/appchooser/appchooser.py +0 -99
  800. venv/Lib/site-packages/PySide6/examples/widgets/animation/appchooser/appchooser_rc.py +0 -1424
  801. venv/Lib/site-packages/PySide6/examples/widgets/animation/easing/easing.py +0 -221
  802. venv/Lib/site-packages/PySide6/examples/widgets/animation/easing/ui_form.py +0 -178
  803. venv/Lib/site-packages/PySide6/examples/widgets/animation/states/states.py +0 -235
  804. venv/Lib/site-packages/PySide6/examples/widgets/animation/states/states_rc.py +0 -2182
  805. venv/Lib/site-packages/PySide6/examples/widgets/codeeditor/codeeditor.py +0 -104
  806. venv/Lib/site-packages/PySide6/examples/widgets/codeeditor/main.py +0 -15
  807. venv/Lib/site-packages/PySide6/examples/widgets/desktop/screenshot/screenshot.py +0 -156
  808. venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/main.py +0 -21
  809. venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/rc_systray.py +0 -2581
  810. venv/Lib/site-packages/PySide6/examples/widgets/desktop/systray/window.py +0 -236
  811. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/classwizard.py +0 -380
  812. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/classwizard_rc.py +0 -2316
  813. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/classwizard/listchooser.py +0 -173
  814. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/extension/extension.py +0 -77
  815. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/findfiles/findfiles.py +0 -184
  816. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/licensewizard/licensewizard.py +0 -298
  817. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/licensewizard/main.py +0 -15
  818. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/standarddialogs/standarddialogs.py +0 -415
  819. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/tabdialog/tabdialog.py +0 -178
  820. venv/Lib/site-packages/PySide6/examples/widgets/dialogs/trivialwizard/trivialwizard.py +0 -63
  821. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggableicons/draggableicons.py +0 -128
  822. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggabletext/draggabletext.py +0 -118
  823. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/draggabletext/draggabletext_rc.py +0 -55
  824. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/droparea.py +0 -67
  825. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/dropsitewindow.py +0 -115
  826. venv/Lib/site-packages/PySide6/examples/widgets/draganddrop/dropsite/main.py +0 -15
  827. venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/blureffect.py +0 -33
  828. venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/blurpicker.py +0 -105
  829. venv/Lib/site-packages/PySide6/examples/widgets/effects/blurpicker/main.py +0 -20
  830. venv/Lib/site-packages/PySide6/examples/widgets/effects/lighting/lighting.py +0 -108
  831. venv/Lib/site-packages/PySide6/examples/widgets/gettext/main.py +0 -60
  832. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/anchorlayout/anchorlayout.py +0 -90
  833. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/collidingmice/collidingmice.py +0 -180
  834. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/collidingmice/mice_rc.py +0 -232
  835. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/diagramscene/diagramscene.py +0 -817
  836. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/diagramscene/diagramscene_rc.py +0 -417
  837. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot.py +0 -254
  838. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/dragdroprobot/dragdroprobot_rc.py +0 -975
  839. venv/Lib/site-packages/PySide6/examples/widgets/graphicsview/elasticnodes/elasticnodes.py +0 -393
  840. venv/Lib/site-packages/PySide6/examples/widgets/imageviewer/imageviewer.py +0 -277
  841. venv/Lib/site-packages/PySide6/examples/widgets/imageviewer/main.py +0 -27
  842. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/adddialogwidget.py +0 -65
  843. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/address_book.py +0 -96
  844. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/addresswidget.py +0 -214
  845. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/newaddresstab.py +0 -56
  846. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/address_book/tablemodel.py +0 -109
  847. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/basicfiltermodel/basicsortfiltermodel.py +0 -178
  848. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/dirview/dirview.py +0 -60
  849. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/main.py +0 -14
  850. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/mainwindow.py +0 -163
  851. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/treeitem.py +0 -94
  852. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/editabletreemodel/treemodel.py +0 -199
  853. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/fetchmore/fetchmore.py +0 -137
  854. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/jsonmodel/jsonmodel.py +0 -323
  855. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spinboxdelegate/spinboxdelegate.py +0 -78
  856. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/main.py +0 -19
  857. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheet.py +0 -544
  858. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheetdelegate.py +0 -67
  859. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/spreadsheet/spreadsheetitem.py +0 -122
  860. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/stardelegate.py +0 -136
  861. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/stareditor.py +0 -63
  862. venv/Lib/site-packages/PySide6/examples/widgets/itemviews/stardelegate/starrating.py +0 -62
  863. venv/Lib/site-packages/PySide6/examples/widgets/layouts/basiclayouts/basiclayouts.py +0 -99
  864. venv/Lib/site-packages/PySide6/examples/widgets/layouts/borderlayout/borderlayout.py +0 -248
  865. venv/Lib/site-packages/PySide6/examples/widgets/layouts/dynamiclayouts/dynamiclayouts.py +0 -132
  866. venv/Lib/site-packages/PySide6/examples/widgets/layouts/flowlayout/flowlayout.py +0 -120
  867. venv/Lib/site-packages/PySide6/examples/widgets/linguist/linguist_rc.py +0 -68
  868. venv/Lib/site-packages/PySide6/examples/widgets/linguist/main.py +0 -55
  869. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/application/application.py +0 -259
  870. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/application/application_rc.py +0 -608
  871. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets.py +0 -271
  872. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/dockwidgets/dockwidgets_rc.py +0 -464
  873. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/mdi/mdi.py +0 -439
  874. venv/Lib/site-packages/PySide6/examples/widgets/mainwindows/mdi/mdi_rc.py +0 -608
  875. venv/Lib/site-packages/PySide6/examples/widgets/painting/basicdrawing/basicdrawing.py +0 -313
  876. venv/Lib/site-packages/PySide6/examples/widgets/painting/basicdrawing/basicdrawing_rc.py +0 -135
  877. venv/Lib/site-packages/PySide6/examples/widgets/painting/concentriccircles/concentriccircles.py +0 -108
  878. venv/Lib/site-packages/PySide6/examples/widgets/painting/painter/painter.py +0 -202
  879. venv/Lib/site-packages/PySide6/examples/widgets/painting/plot/plot.py +0 -66
  880. venv/Lib/site-packages/PySide6/examples/widgets/richtext/orderform/orderform.py +0 -267
  881. venv/Lib/site-packages/PySide6/examples/widgets/richtext/syntaxhighlighter/syntaxhighlighter.py +0 -109
  882. venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/main.py +0 -42
  883. venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/textedit.py +0 -716
  884. venv/Lib/site-packages/PySide6/examples/widgets/richtext/textedit/textedit_rc.py +0 -6029
  885. venv/Lib/site-packages/PySide6/examples/widgets/richtext/textobject/textobject.py +0 -104
  886. venv/Lib/site-packages/PySide6/examples/widgets/thread_signals/thread_signals.py +0 -62
  887. venv/Lib/site-packages/PySide6/examples/widgets/tools/regularexpression/regularexpression.py +0 -21
  888. venv/Lib/site-packages/PySide6/examples/widgets/tools/regularexpression/regularexpressiondialog.py +0 -457
  889. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part1.py +0 -39
  890. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part2.py +0 -146
  891. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part3.py +0 -215
  892. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part4.py +0 -272
  893. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part5.py +0 -332
  894. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part6.py +0 -396
  895. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/addressbook/part7.py +0 -448
  896. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t1.py +0 -20
  897. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t10.py +0 -152
  898. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t11.py +0 -224
  899. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t12.py +0 -275
  900. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t13.py +0 -356
  901. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t14.py +0 -409
  902. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t2.py +0 -23
  903. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t3.py +0 -25
  904. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t4.py +0 -30
  905. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t5.py +0 -41
  906. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t6.py +0 -51
  907. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t7.py +0 -73
  908. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t8.py +0 -116
  909. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/cannon/t9.py +0 -122
  910. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/1_readonly.py +0 -38
  911. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/2_formatting.py +0 -65
  912. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/3_changingmodel.py +0 -52
  913. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/4_headers.py +0 -43
  914. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/5_edit.py +0 -73
  915. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/6_treeview.py +0 -41
  916. venv/Lib/site-packages/PySide6/examples/widgets/tutorials/modelview/7_selections.py +0 -70
  917. venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/characterwidget.py +0 -133
  918. venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/fontinfodialog.py +0 -47
  919. venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/main.py +0 -17
  920. venv/Lib/site-packages/PySide6/examples/widgets/widgets/charactermap/mainwindow.py +0 -167
  921. venv/Lib/site-packages/PySide6/examples/widgets/widgets/digitalclock/digitalclock.py +0 -41
  922. venv/Lib/site-packages/PySide6/examples/widgets/widgets/tetrix/tetrix.py +0 -471
  923. venv/Lib/site-packages/PySide6/examples/widgets/widgetsgallery/main.py +0 -17
  924. venv/Lib/site-packages/PySide6/examples/widgets/widgetsgallery/widgetgallery.py +0 -402
  925. venv/Lib/site-packages/PySide6/examples/xml/dombookmarks/dombookmarks.py +0 -228
  926. venv/Lib/site-packages/PySide6/scripts/deploy/__init__.py +0 -7
  927. venv/Lib/site-packages/PySide6/scripts/deploy/commands.py +0 -31
  928. venv/Lib/site-packages/PySide6/scripts/deploy/config.py +0 -226
  929. venv/Lib/site-packages/PySide6/scripts/deploy/nuitka_helper.py +0 -51
  930. venv/Lib/site-packages/PySide6/scripts/deploy/python_helper.py +0 -83
  931. venv/Lib/site-packages/PySide6/scripts/deploy.py +0 -190
  932. venv/Lib/site-packages/PySide6/scripts/metaobjectdump.py +0 -406
  933. venv/Lib/site-packages/PySide6/scripts/project/__init__.py +0 -25
  934. venv/Lib/site-packages/PySide6/scripts/project/newproject.py +0 -165
  935. venv/Lib/site-packages/PySide6/scripts/project/project_data.py +0 -215
  936. venv/Lib/site-packages/PySide6/scripts/project/utils.py +0 -105
  937. venv/Lib/site-packages/PySide6/scripts/project.py +0 -240
  938. venv/Lib/site-packages/PySide6/scripts/pyside_tool.py +0 -201
  939. venv/Lib/site-packages/PySide6/scripts/qml.py +0 -246
  940. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp.py +0 -62
  941. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/astdump.py +0 -111
  942. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/formatter.py +0 -265
  943. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/nodedump.py +0 -50
  944. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/qt.py +0 -56
  945. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/tokenizer.py +0 -55
  946. venv/Lib/site-packages/PySide6/scripts/qtpy2cpp_lib/visitor.py +0 -443
  947. venv/Lib/site-packages/PySide6/support/__init__.py +0 -6
  948. venv/Lib/site-packages/PySide6/support/deprecated.py +0 -97
  949. venv/Lib/site-packages/PySide6/support/generate_pyi.py +0 -92
  950. venv/Lib/site-packages/_distutils_hack/__init__.py +0 -222
  951. venv/Lib/site-packages/_distutils_hack/override.py +0 -1
  952. venv/Lib/site-packages/_pyinstaller_hooks_contrib/__init__.py +0 -15
  953. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/__init__.py +0 -23
  954. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_find_module_path/__init__.py +0 -11
  955. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/__init__.py +0 -11
  956. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/hook-tensorflow.py +0 -23
  957. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/pre_safe_import_module/hook-win32com.py +0 -47
  958. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/__init__.py +0 -26
  959. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_enchant.py +0 -22
  960. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_nltk.py +0 -18
  961. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_osgeo.py +0 -32
  962. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pygraphviz.py +0 -31
  963. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pyproj.py +0 -26
  964. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pyqtgraph_multiprocess.py +0 -51
  965. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pythoncom.py +0 -24
  966. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_pywintypes.py +0 -24
  967. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_traitlets.py +0 -24
  968. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/rthooks/pyi_rth_usb.py +0 -74
  969. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/__init__.py +0 -31
  970. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-BTrees.py +0 -17
  971. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Crypto.py +0 -63
  972. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Cryptodome.py +0 -45
  973. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-HtmlTestRunner.py +0 -17
  974. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-IPython.py +0 -34
  975. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-OpenGL.py +0 -70
  976. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-OpenGL_accelerate.py +0 -25
  977. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-Xlib.py +0 -16
  978. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-_mssql.py +0 -13
  979. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-_mysql.py +0 -18
  980. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-accessible_output2.py +0 -19
  981. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-adbutils.py +0 -16
  982. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-adios.py +0 -19
  983. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-afmformats.py +0 -17
  984. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-aliyunsdkcore.py +0 -14
  985. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-altair.py +0 -15
  986. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-amazonproduct.py +0 -29
  987. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-anyio.py +0 -20
  988. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-appdirs.py +0 -23
  989. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-appy.pod.py +0 -17
  990. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-apscheduler.py +0 -28
  991. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-argon2.py +0 -13
  992. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astor.py +0 -15
  993. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astroid.py +0 -48
  994. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-astropy.py +0 -42
  995. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-av.py +0 -35
  996. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-avro.py +0 -28
  997. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-azurerm.py +0 -22
  998. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-backports.zoneinfo.py +0 -18
  999. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bacon.py +0 -49
  1000. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bcrypt.py +0 -19
  1001. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bleak.py +0 -19
  1002. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-blspy.py +0 -36
  1003. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-bokeh.py +0 -24
  1004. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-boto.py +0 -25
  1005. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-boto3.py +0 -29
  1006. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-botocore.py +0 -30
  1007. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-branca.py +0 -15
  1008. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cairocffi.py +0 -40
  1009. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cairosvg.py +0 -40
  1010. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cassandra.py +0 -22
  1011. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-certifi.py +0 -21
  1012. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cf_units.py +0 -16
  1013. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cftime.py +0 -21
  1014. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-charset_normalizer.py +0 -16
  1015. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cloudscraper.py +0 -15
  1016. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-clr.py +0 -62
  1017. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-clr_loader.py +0 -24
  1018. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-compliance_checker.py +0 -22
  1019. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-countrycode.py +0 -15
  1020. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-countryinfo.py +0 -15
  1021. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cryptography.py +0 -44
  1022. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cv2.py +0 -74
  1023. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cx_Oracle.py +0 -15
  1024. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-cytoolz.itertoolz.py +0 -16
  1025. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash.py +0 -15
  1026. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_bootstrap_components.py +0 -15
  1027. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_core_components.py +0 -15
  1028. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_html_components.py +0 -15
  1029. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_renderer.py +0 -15
  1030. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_table.py +0 -15
  1031. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dash_uploader.py +0 -15
  1032. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dask.py +0 -18
  1033. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dateparser.utils.strptime.py +0 -17
  1034. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dclab.py +0 -17
  1035. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-discid.py +0 -41
  1036. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-distorm3.py +0 -20
  1037. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dns.rdata.py +0 -17
  1038. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docutils.py +0 -20
  1039. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docx.py +0 -17
  1040. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-docx2pdf.py +0 -20
  1041. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-dynaconf.py +0 -15
  1042. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-easyocr.py +0 -18
  1043. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eel.py +0 -16
  1044. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-enchant.py +0 -64
  1045. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-enzyme.parsers.ebml.core.py +0 -26
  1046. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_abi.py +0 -15
  1047. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_account.py +0 -15
  1048. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_hash.py +0 -16
  1049. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_keyfile.py +0 -15
  1050. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-eth_utils.py +0 -15
  1051. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-exchangelib.py +0 -12
  1052. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fabric.py +0 -22
  1053. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-faker.py +0 -19
  1054. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ffpyplayer.py +0 -19
  1055. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fiona.py +0 -17
  1056. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flask_compress.py +0 -15
  1057. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flask_restx.py +0 -13
  1058. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flex.py +0 -17
  1059. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-flirpy.py +0 -19
  1060. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-fmpy.py +0 -27
  1061. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-folium.py +0 -16
  1062. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gadfly.py +0 -14
  1063. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gcloud.py +0 -15
  1064. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-geopandas.py +0 -17
  1065. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gitlab.py +0 -22
  1066. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gmplot.py +0 -15
  1067. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gooey.py +0 -19
  1068. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.api.py +0 -14
  1069. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.api_core.py +0 -14
  1070. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.bigquery.py +0 -16
  1071. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.kms_v1.py +0 -18
  1072. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.pubsub_v1.py +0 -14
  1073. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.py +0 -14
  1074. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.speech.py +0 -14
  1075. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.storage.py +0 -14
  1076. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-google.cloud.translate.py +0 -14
  1077. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-googleapiclient.model.py +0 -20
  1078. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-great_expectations.py +0 -15
  1079. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-grpc.py +0 -14
  1080. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gst._gst.py +0 -48
  1081. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-gtk.py +0 -17
  1082. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-h5py.py +0 -19
  1083. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-hdf5plugin.py +0 -17
  1084. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-httplib2.py +0 -17
  1085. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-humanize.py +0 -24
  1086. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-hydra.py +0 -19
  1087. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ijson.py +0 -14
  1088. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-imageio.py +0 -21
  1089. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-imageio_ffmpeg.py +0 -17
  1090. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-iminuit.py +0 -25
  1091. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jaraco.text.py +0 -17
  1092. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jedi.py +0 -17
  1093. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jinja2.py +0 -14
  1094. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jinxed.py +0 -15
  1095. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jira.py +0 -20
  1096. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonpath_rw_ext.py +0 -15
  1097. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonrpcserver.py +0 -17
  1098. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jsonschema.py +0 -18
  1099. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-jupyterlab.py +0 -15
  1100. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-kaleido.py +0 -15
  1101. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-kinterbasdb.py +0 -20
  1102. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-langcodes.py +0 -15
  1103. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-langdetect.py +0 -15
  1104. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lark.py +0 -15
  1105. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ldfparser.py +0 -15
  1106. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lensfunpy.py +0 -16
  1107. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-libaudioverse.py +0 -19
  1108. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lightgbm.py +0 -27
  1109. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-limits.py +0 -15
  1110. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-llvmlite.py +0 -21
  1111. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-logilab.py +0 -26
  1112. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.etree.py +0 -14
  1113. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.isoschematron.py +0 -17
  1114. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.objectify.py +0 -14
  1115. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lxml.py +0 -20
  1116. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-lz4.py +0 -15
  1117. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-magic.py +0 -18
  1118. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mako.codegen.py +0 -20
  1119. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mariadb.py +0 -26
  1120. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-markdown.py +0 -28
  1121. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-metpy.py +0 -21
  1122. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-migrate.py +0 -19
  1123. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mimesis.py +0 -17
  1124. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mnemonic.py +0 -15
  1125. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-mpl_toolkits.basemap.py +0 -38
  1126. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-msoffcrypto.py +0 -18
  1127. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nacl.py +0 -33
  1128. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-names.py +0 -18
  1129. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nanite.py +0 -17
  1130. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbconvert.py +0 -18
  1131. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbdime.py +0 -15
  1132. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nbformat.py +0 -15
  1133. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ncclient.py +0 -27
  1134. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-netCDF4.py +0 -22
  1135. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nltk.py +0 -28
  1136. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-nnpy.py +0 -19
  1137. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-notebook.py +0 -27
  1138. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-numba.py +0 -20
  1139. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-numcodecs.py +0 -14
  1140. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-office365.py +0 -19
  1141. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-openpyxl.py +0 -18
  1142. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-orjson.py +0 -21
  1143. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-osgeo.py +0 -82
  1144. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pandas_flavor.py +0 -15
  1145. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-panel.py +0 -18
  1146. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-parsedatetime.py +0 -29
  1147. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-parso.py +0 -14
  1148. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-passlib.py +0 -21
  1149. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-paste.exceptions.reporter.py +0 -20
  1150. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-patsy.py +0 -13
  1151. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pdfminer.py +0 -15
  1152. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pendulum.py +0 -20
  1153. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-phonenumbers.py +0 -19
  1154. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pingouin.py +0 -14
  1155. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pint.py +0 -18
  1156. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pinyin.py +0 -20
  1157. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-platformdirs.py +0 -27
  1158. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-plotly.py +0 -17
  1159. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-prettytable.py +0 -14
  1160. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-psychopy.py +0 -16
  1161. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-psycopg2.py +0 -14
  1162. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-publicsuffix2.py +0 -15
  1163. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pubsub.core.py +0 -15
  1164. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-puremagic.py +0 -15
  1165. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-py.py +0 -15
  1166. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyarrow.py +0 -24
  1167. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pycountry.py +0 -18
  1168. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pycparser.py +0 -23
  1169. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pydantic.py +0 -44
  1170. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pydivert.py +0 -15
  1171. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-io.py +0 -17
  1172. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-ods.py +0 -17
  1173. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-ods3.py +0 -17
  1174. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-odsr.py +0 -17
  1175. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xls.py +0 -17
  1176. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xlsx.py +0 -17
  1177. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel-xlsxw.py +0 -17
  1178. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel.py +0 -30
  1179. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_io.py +0 -27
  1180. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_ods.py +0 -17
  1181. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_ods3.py +0 -17
  1182. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_odsr.py +0 -17
  1183. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xls.py +0 -17
  1184. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xlsx.py +0 -17
  1185. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcel_xlsxw.py +0 -17
  1186. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyexcelerate.Writer.py +0 -14
  1187. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pygraphviz.py +0 -66
  1188. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pylint.py +0 -74
  1189. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pymediainfo.py +0 -43
  1190. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pymssql.py +0 -20
  1191. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pynput.py +0 -14
  1192. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyodbc.py +0 -21
  1193. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyopencl.py +0 -17
  1194. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypemicro.py +0 -43
  1195. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyphen.py +0 -15
  1196. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyppeteer.py +0 -16
  1197. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyproj.py +0 -63
  1198. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypsexec.py +0 -18
  1199. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pypylon.py +0 -40
  1200. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyqtgraph.py +0 -40
  1201. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyshark.py +0 -24
  1202. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pysnmp.py +0 -16
  1203. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pystray.py +0 -16
  1204. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pytest.py +0 -19
  1205. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pythoncom.py +0 -31
  1206. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyttsx.py +0 -26
  1207. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyttsx3.py +0 -30
  1208. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyviz_comms.py +0 -15
  1209. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pyvjoy.py +0 -14
  1210. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pywintypes.py +0 -31
  1211. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-pywt.py +0 -21
  1212. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-qtmodern.py +0 -15
  1213. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-radicale.py +0 -16
  1214. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-raven.py +0 -14
  1215. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rawpy.py +0 -16
  1216. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rdflib.py +0 -16
  1217. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-redmine.py +0 -14
  1218. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-regex.py +0 -14
  1219. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-reportlab.lib.utils.py +0 -17
  1220. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-reportlab.pdfbase._fontdata.py +0 -18
  1221. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-resampy.py +0 -17
  1222. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rpy2.py +0 -19
  1223. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-rtree.py +0 -18
  1224. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sacremoses.py +0 -15
  1225. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-selenium.py +0 -16
  1226. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sentry_sdk.py +0 -40
  1227. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-shapely.py +0 -106
  1228. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-shotgun_api3.py +0 -23
  1229. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.feature.py +0 -15
  1230. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.filters.py +0 -18
  1231. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.graph.py +0 -15
  1232. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.io.py +0 -20
  1233. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-skimage.transform.py +0 -21
  1234. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.cluster.py +0 -18
  1235. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.linear_model.py +0 -18
  1236. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.cluster.py +0 -27
  1237. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.pairwise.py +0 -21
  1238. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.metrics.py +0 -19
  1239. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.neighbors.py +0 -36
  1240. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.py +0 -16
  1241. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.tree.py +0 -13
  1242. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sklearn.utils.py +0 -13
  1243. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sound_lib.py +0 -19
  1244. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sounddevice.py +0 -63
  1245. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-soundfile.py +0 -63
  1246. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spacy.py +0 -19
  1247. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-speech_recognition.py +0 -18
  1248. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spiceypy.py +0 -18
  1249. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-spnego.py +0 -15
  1250. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-srsly.msgpack._packer.py +0 -17
  1251. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-statsmodels.tsa.statespace.py +0 -16
  1252. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-stdnum.py +0 -15
  1253. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-storm.database.py +0 -23
  1254. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-sunpy.py +0 -20
  1255. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-swagger_spec_validator.py +0 -15
  1256. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tableauhyperapi.py +0 -15
  1257. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tables.py +0 -15
  1258. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tcod.py +0 -20
  1259. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tensorflow.py +0 -79
  1260. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-text_unidecode.py +0 -27
  1261. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-textdistance.py +0 -17
  1262. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-thinc.backends.numpy_ops.py +0 -17
  1263. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-thinc.py +0 -18
  1264. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-timezonefinder.py +0 -15
  1265. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tinycss2.py +0 -23
  1266. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-torch.py +0 -15
  1267. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-torchvision.ops.py +0 -15
  1268. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-trimesh.py +0 -17
  1269. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ttkthemes.py +0 -57
  1270. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-ttkwidgets.py +0 -39
  1271. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-tzdata.py +0 -22
  1272. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-u1db.py +0 -32
  1273. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-umap.py +0 -16
  1274. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-unidecode.py +0 -21
  1275. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uniseg.py +0 -16
  1276. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-usb.py +0 -89
  1277. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uvicorn.py +0 -15
  1278. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-uvloop.py +0 -19
  1279. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-vtkpython.py +0 -18
  1280. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wavefile.py +0 -19
  1281. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-weasyprint.py +0 -85
  1282. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-web3.py +0 -15
  1283. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webassets.py +0 -14
  1284. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webrtcvad.py +0 -15
  1285. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-websockets.py +0 -16
  1286. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-webview.py +0 -20
  1287. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-win32com.py +0 -21
  1288. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-workflow.py +0 -14
  1289. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.lib.activex.py +0 -17
  1290. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.lib.pubsub.py +0 -28
  1291. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-wx.xrc.py +0 -13
  1292. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xml.dom.html.HTMLDocument.py +0 -68
  1293. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xml.sax.saxexts.py +0 -26
  1294. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xmldiff.py +0 -15
  1295. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-xsge_gui.py +0 -17
  1296. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-yt_dlp.py +0 -17
  1297. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zeep.py +0 -17
  1298. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zmq.py +0 -65
  1299. venv/Lib/site-packages/_pyinstaller_hooks_contrib/hooks/stdhooks/hook-zoneinfo.py +0 -18
  1300. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/__init__.py +0 -28
  1301. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/conftest.py +0 -13
  1302. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_boto.py +0 -45
  1303. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_enchant.py +0 -43
  1304. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_pycparser.py +0 -54
  1305. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_tensorflow_layer.py +0 -36
  1306. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/scripts/pyi_lib_tensorflow_mnist.py +0 -51
  1307. venv/Lib/site-packages/_pyinstaller_hooks_contrib/tests/test_libraries.py +0 -1479
  1308. venv/Lib/site-packages/_virtualenv.py +0 -130
  1309. venv/Lib/site-packages/altgraph/Dot.py +0 -321
  1310. venv/Lib/site-packages/altgraph/Graph.py +0 -682
  1311. venv/Lib/site-packages/altgraph/GraphAlgo.py +0 -171
  1312. venv/Lib/site-packages/altgraph/GraphStat.py +0 -73
  1313. venv/Lib/site-packages/altgraph/GraphUtil.py +0 -139
  1314. venv/Lib/site-packages/altgraph/ObjectGraph.py +0 -212
  1315. venv/Lib/site-packages/altgraph/__init__.py +0 -148
  1316. venv/Lib/site-packages/bleach/__init__.py +0 -125
  1317. venv/Lib/site-packages/bleach/_vendor/html5lib/__init__.py +0 -35
  1318. venv/Lib/site-packages/bleach/_vendor/html5lib/_ihatexml.py +0 -289
  1319. venv/Lib/site-packages/bleach/_vendor/html5lib/_inputstream.py +0 -918
  1320. venv/Lib/site-packages/bleach/_vendor/html5lib/_tokenizer.py +0 -1735
  1321. venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/__init__.py +0 -5
  1322. venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/_base.py +0 -40
  1323. venv/Lib/site-packages/bleach/_vendor/html5lib/_trie/py.py +0 -67
  1324. venv/Lib/site-packages/bleach/_vendor/html5lib/_utils.py +0 -159
  1325. venv/Lib/site-packages/bleach/_vendor/html5lib/constants.py +0 -2946
  1326. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/__init__.py +0 -0
  1327. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/alphabeticalattributes.py +0 -29
  1328. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/base.py +0 -12
  1329. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/inject_meta_charset.py +0 -73
  1330. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/lint.py +0 -93
  1331. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/optionaltags.py +0 -207
  1332. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/sanitizer.py +0 -916
  1333. venv/Lib/site-packages/bleach/_vendor/html5lib/filters/whitespace.py +0 -38
  1334. venv/Lib/site-packages/bleach/_vendor/html5lib/html5parser.py +0 -2795
  1335. venv/Lib/site-packages/bleach/_vendor/html5lib/serializer.py +0 -409
  1336. venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/__init__.py +0 -30
  1337. venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/genshi.py +0 -54
  1338. venv/Lib/site-packages/bleach/_vendor/html5lib/treeadapters/sax.py +0 -50
  1339. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/__init__.py +0 -88
  1340. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/base.py +0 -417
  1341. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/dom.py +0 -239
  1342. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/etree.py +0 -343
  1343. venv/Lib/site-packages/bleach/_vendor/html5lib/treebuilders/etree_lxml.py +0 -392
  1344. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/__init__.py +0 -154
  1345. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/base.py +0 -252
  1346. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/dom.py +0 -43
  1347. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/etree.py +0 -131
  1348. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/etree_lxml.py +0 -215
  1349. venv/Lib/site-packages/bleach/_vendor/html5lib/treewalkers/genshi.py +0 -69
  1350. venv/Lib/site-packages/bleach/_vendor/parse.py +0 -1078
  1351. venv/Lib/site-packages/bleach/callbacks.py +0 -32
  1352. venv/Lib/site-packages/bleach/css_sanitizer.py +0 -104
  1353. venv/Lib/site-packages/bleach/html5lib_shim.py +0 -741
  1354. venv/Lib/site-packages/bleach/linkifier.py +0 -633
  1355. venv/Lib/site-packages/bleach/parse_shim.py +0 -1
  1356. venv/Lib/site-packages/bleach/sanitizer.py +0 -638
  1357. venv/Lib/site-packages/build/__init__.py +0 -511
  1358. venv/Lib/site-packages/build/__main__.py +0 -399
  1359. venv/Lib/site-packages/build/env.py +0 -343
  1360. venv/Lib/site-packages/build/util.py +0 -61
  1361. venv/Lib/site-packages/certifi/__init__.py +0 -4
  1362. venv/Lib/site-packages/certifi/__main__.py +0 -12
  1363. venv/Lib/site-packages/certifi/core.py +0 -108
  1364. venv/Lib/site-packages/charset_normalizer/__init__.py +0 -45
  1365. venv/Lib/site-packages/charset_normalizer/api.py +0 -553
  1366. venv/Lib/site-packages/charset_normalizer/assets/__init__.py +0 -1440
  1367. venv/Lib/site-packages/charset_normalizer/cd.py +0 -391
  1368. venv/Lib/site-packages/charset_normalizer/cli/__init__.py +0 -0
  1369. venv/Lib/site-packages/charset_normalizer/cli/normalizer.py +0 -298
  1370. venv/Lib/site-packages/charset_normalizer/constant.py +0 -495
  1371. venv/Lib/site-packages/charset_normalizer/legacy.py +0 -43
  1372. venv/Lib/site-packages/charset_normalizer/md.py +0 -571
  1373. venv/Lib/site-packages/charset_normalizer/models.py +0 -337
  1374. venv/Lib/site-packages/charset_normalizer/utils.py +0 -418
  1375. venv/Lib/site-packages/charset_normalizer/version.py +0 -6
  1376. venv/Lib/site-packages/colorama/__init__.py +0 -7
  1377. venv/Lib/site-packages/colorama/ansi.py +0 -102
  1378. venv/Lib/site-packages/colorama/ansitowin32.py +0 -277
  1379. venv/Lib/site-packages/colorama/initialise.py +0 -121
  1380. venv/Lib/site-packages/colorama/tests/__init__.py +0 -1
  1381. venv/Lib/site-packages/colorama/tests/ansi_test.py +0 -76
  1382. venv/Lib/site-packages/colorama/tests/ansitowin32_test.py +0 -294
  1383. venv/Lib/site-packages/colorama/tests/initialise_test.py +0 -189
  1384. venv/Lib/site-packages/colorama/tests/isatty_test.py +0 -57
  1385. venv/Lib/site-packages/colorama/tests/utils.py +0 -49
  1386. venv/Lib/site-packages/colorama/tests/winterm_test.py +0 -131
  1387. venv/Lib/site-packages/colorama/win32.py +0 -180
  1388. venv/Lib/site-packages/colorama/winterm.py +0 -195
  1389. venv/Lib/site-packages/commonmark/__init__.py +0 -8
  1390. venv/Lib/site-packages/commonmark/blocks.py +0 -908
  1391. venv/Lib/site-packages/commonmark/cmark.py +0 -53
  1392. venv/Lib/site-packages/commonmark/common.py +0 -113
  1393. venv/Lib/site-packages/commonmark/dump.py +0 -108
  1394. venv/Lib/site-packages/commonmark/entitytrans.py +0 -2353
  1395. venv/Lib/site-packages/commonmark/inlines.py +0 -882
  1396. venv/Lib/site-packages/commonmark/main.py +0 -41
  1397. venv/Lib/site-packages/commonmark/node.py +0 -179
  1398. venv/Lib/site-packages/commonmark/normalize_reference.py +0 -165
  1399. venv/Lib/site-packages/commonmark/render/__init__.py +0 -0
  1400. venv/Lib/site-packages/commonmark/render/html.py +0 -228
  1401. venv/Lib/site-packages/commonmark/render/renderer.py +0 -43
  1402. venv/Lib/site-packages/commonmark/render/rst.py +0 -159
  1403. venv/Lib/site-packages/commonmark/tests/__init__.py +0 -0
  1404. venv/Lib/site-packages/commonmark/tests/rst_tests.py +0 -172
  1405. venv/Lib/site-packages/commonmark/tests/run_spec_tests.py +0 -242
  1406. venv/Lib/site-packages/commonmark/tests/unit_tests.py +0 -157
  1407. venv/Lib/site-packages/docutils/__init__.py +0 -284
  1408. venv/Lib/site-packages/docutils/__main__.py +0 -96
  1409. venv/Lib/site-packages/docutils/core.py +0 -714
  1410. venv/Lib/site-packages/docutils/examples.py +0 -99
  1411. venv/Lib/site-packages/docutils/frontend.py +0 -951
  1412. venv/Lib/site-packages/docutils/io.py +0 -611
  1413. venv/Lib/site-packages/docutils/languages/__init__.py +0 -83
  1414. venv/Lib/site-packages/docutils/languages/af.py +0 -58
  1415. venv/Lib/site-packages/docutils/languages/ar.py +0 -60
  1416. venv/Lib/site-packages/docutils/languages/ca.py +0 -60
  1417. venv/Lib/site-packages/docutils/languages/cs.py +0 -60
  1418. venv/Lib/site-packages/docutils/languages/da.py +0 -61
  1419. venv/Lib/site-packages/docutils/languages/de.py +0 -58
  1420. venv/Lib/site-packages/docutils/languages/en.py +0 -60
  1421. venv/Lib/site-packages/docutils/languages/eo.py +0 -61
  1422. venv/Lib/site-packages/docutils/languages/es.py +0 -58
  1423. venv/Lib/site-packages/docutils/languages/fa.py +0 -60
  1424. venv/Lib/site-packages/docutils/languages/fi.py +0 -60
  1425. venv/Lib/site-packages/docutils/languages/fr.py +0 -58
  1426. venv/Lib/site-packages/docutils/languages/gl.py +0 -62
  1427. venv/Lib/site-packages/docutils/languages/he.py +0 -61
  1428. venv/Lib/site-packages/docutils/languages/it.py +0 -58
  1429. venv/Lib/site-packages/docutils/languages/ja.py +0 -60
  1430. venv/Lib/site-packages/docutils/languages/ko.py +0 -60
  1431. venv/Lib/site-packages/docutils/languages/lt.py +0 -60
  1432. venv/Lib/site-packages/docutils/languages/lv.py +0 -59
  1433. venv/Lib/site-packages/docutils/languages/nl.py +0 -60
  1434. venv/Lib/site-packages/docutils/languages/pl.py +0 -60
  1435. venv/Lib/site-packages/docutils/languages/pt_br.py +0 -60
  1436. venv/Lib/site-packages/docutils/languages/ru.py +0 -58
  1437. venv/Lib/site-packages/docutils/languages/sk.py +0 -58
  1438. venv/Lib/site-packages/docutils/languages/sv.py +0 -59
  1439. venv/Lib/site-packages/docutils/languages/zh_cn.py +0 -66
  1440. venv/Lib/site-packages/docutils/languages/zh_tw.py +0 -65
  1441. venv/Lib/site-packages/docutils/nodes.py +0 -2314
  1442. venv/Lib/site-packages/docutils/parsers/__init__.py +0 -92
  1443. venv/Lib/site-packages/docutils/parsers/commonmark_wrapper.py +0 -56
  1444. venv/Lib/site-packages/docutils/parsers/null.py +0 -20
  1445. venv/Lib/site-packages/docutils/parsers/recommonmark_wrapper.py +0 -136
  1446. venv/Lib/site-packages/docutils/parsers/rst/__init__.py +0 -414
  1447. venv/Lib/site-packages/docutils/parsers/rst/directives/__init__.py +0 -460
  1448. venv/Lib/site-packages/docutils/parsers/rst/directives/admonitions.py +0 -99
  1449. venv/Lib/site-packages/docutils/parsers/rst/directives/body.py +0 -304
  1450. venv/Lib/site-packages/docutils/parsers/rst/directives/html.py +0 -21
  1451. venv/Lib/site-packages/docutils/parsers/rst/directives/images.py +0 -163
  1452. venv/Lib/site-packages/docutils/parsers/rst/directives/misc.py +0 -635
  1453. venv/Lib/site-packages/docutils/parsers/rst/directives/parts.py +0 -126
  1454. venv/Lib/site-packages/docutils/parsers/rst/directives/references.py +0 -29
  1455. venv/Lib/site-packages/docutils/parsers/rst/directives/tables.py +0 -513
  1456. venv/Lib/site-packages/docutils/parsers/rst/languages/__init__.py +0 -40
  1457. venv/Lib/site-packages/docutils/parsers/rst/languages/af.py +0 -107
  1458. venv/Lib/site-packages/docutils/parsers/rst/languages/ar.py +0 -99
  1459. venv/Lib/site-packages/docutils/parsers/rst/languages/ca.py +0 -126
  1460. venv/Lib/site-packages/docutils/parsers/rst/languages/cs.py +0 -110
  1461. venv/Lib/site-packages/docutils/parsers/rst/languages/da.py +0 -113
  1462. venv/Lib/site-packages/docutils/parsers/rst/languages/de.py +0 -106
  1463. venv/Lib/site-packages/docutils/parsers/rst/languages/en.py +0 -111
  1464. venv/Lib/site-packages/docutils/parsers/rst/languages/eo.py +0 -118
  1465. venv/Lib/site-packages/docutils/parsers/rst/languages/es.py +0 -122
  1466. venv/Lib/site-packages/docutils/parsers/rst/languages/fa.py +0 -102
  1467. venv/Lib/site-packages/docutils/parsers/rst/languages/fi.py +0 -98
  1468. venv/Lib/site-packages/docutils/parsers/rst/languages/fr.py +0 -104
  1469. venv/Lib/site-packages/docutils/parsers/rst/languages/gl.py +0 -111
  1470. venv/Lib/site-packages/docutils/parsers/rst/languages/he.py +0 -109
  1471. venv/Lib/site-packages/docutils/parsers/rst/languages/it.py +0 -98
  1472. venv/Lib/site-packages/docutils/parsers/rst/languages/ja.py +0 -119
  1473. venv/Lib/site-packages/docutils/parsers/rst/languages/ko.py +0 -111
  1474. venv/Lib/site-packages/docutils/parsers/rst/languages/lt.py +0 -109
  1475. venv/Lib/site-packages/docutils/parsers/rst/languages/lv.py +0 -108
  1476. venv/Lib/site-packages/docutils/parsers/rst/languages/nl.py +0 -113
  1477. venv/Lib/site-packages/docutils/parsers/rst/languages/pl.py +0 -100
  1478. venv/Lib/site-packages/docutils/parsers/rst/languages/pt_br.py +0 -109
  1479. venv/Lib/site-packages/docutils/parsers/rst/languages/ru.py +0 -90
  1480. venv/Lib/site-packages/docutils/parsers/rst/languages/sk.py +0 -96
  1481. venv/Lib/site-packages/docutils/parsers/rst/languages/sv.py +0 -96
  1482. venv/Lib/site-packages/docutils/parsers/rst/languages/zh_cn.py +0 -104
  1483. venv/Lib/site-packages/docutils/parsers/rst/languages/zh_tw.py +0 -109
  1484. venv/Lib/site-packages/docutils/parsers/rst/roles.py +0 -439
  1485. venv/Lib/site-packages/docutils/parsers/rst/states.py +0 -3135
  1486. venv/Lib/site-packages/docutils/parsers/rst/tableparser.py +0 -539
  1487. venv/Lib/site-packages/docutils/readers/__init__.py +0 -113
  1488. venv/Lib/site-packages/docutils/readers/doctree.py +0 -46
  1489. venv/Lib/site-packages/docutils/readers/pep.py +0 -48
  1490. venv/Lib/site-packages/docutils/readers/standalone.py +0 -65
  1491. venv/Lib/site-packages/docutils/statemachine.py +0 -1525
  1492. venv/Lib/site-packages/docutils/transforms/__init__.py +0 -174
  1493. venv/Lib/site-packages/docutils/transforms/components.py +0 -54
  1494. venv/Lib/site-packages/docutils/transforms/frontmatter.py +0 -545
  1495. venv/Lib/site-packages/docutils/transforms/misc.py +0 -144
  1496. venv/Lib/site-packages/docutils/transforms/parts.py +0 -176
  1497. venv/Lib/site-packages/docutils/transforms/peps.py +0 -308
  1498. venv/Lib/site-packages/docutils/transforms/references.py +0 -919
  1499. venv/Lib/site-packages/docutils/transforms/universal.py +0 -338
  1500. venv/Lib/site-packages/docutils/transforms/writer_aux.py +0 -99
  1501. venv/Lib/site-packages/docutils/utils/__init__.py +0 -821
  1502. venv/Lib/site-packages/docutils/utils/code_analyzer.py +0 -138
  1503. venv/Lib/site-packages/docutils/utils/error_reporting.py +0 -222
  1504. venv/Lib/site-packages/docutils/utils/math/__init__.py +0 -52
  1505. venv/Lib/site-packages/docutils/utils/math/latex2mathml.py +0 -1430
  1506. venv/Lib/site-packages/docutils/utils/math/math2html.py +0 -3171
  1507. venv/Lib/site-packages/docutils/utils/math/tex2mathml_extern.py +0 -152
  1508. venv/Lib/site-packages/docutils/utils/math/tex2unichar.py +0 -704
  1509. venv/Lib/site-packages/docutils/utils/math/unichar2tex.py +0 -808
  1510. venv/Lib/site-packages/docutils/utils/punctuation_chars.py +0 -122
  1511. venv/Lib/site-packages/docutils/utils/roman.py +0 -86
  1512. venv/Lib/site-packages/docutils/utils/smartquotes.py +0 -991
  1513. venv/Lib/site-packages/docutils/utils/urischemes.py +0 -138
  1514. venv/Lib/site-packages/docutils/writers/__init__.py +0 -151
  1515. venv/Lib/site-packages/docutils/writers/_html_base.py +0 -1781
  1516. venv/Lib/site-packages/docutils/writers/docutils_xml.py +0 -188
  1517. venv/Lib/site-packages/docutils/writers/html4css1/__init__.py +0 -947
  1518. venv/Lib/site-packages/docutils/writers/html5_polyglot/__init__.py +0 -454
  1519. venv/Lib/site-packages/docutils/writers/latex2e/__init__.py +0 -3295
  1520. venv/Lib/site-packages/docutils/writers/manpage.py +0 -1181
  1521. venv/Lib/site-packages/docutils/writers/null.py +0 -21
  1522. venv/Lib/site-packages/docutils/writers/odf_odt/__init__.py +0 -3468
  1523. venv/Lib/site-packages/docutils/writers/odf_odt/pygmentsformatter.py +0 -109
  1524. venv/Lib/site-packages/docutils/writers/pep_html/__init__.py +0 -103
  1525. venv/Lib/site-packages/docutils/writers/pseudoxml.py +0 -40
  1526. venv/Lib/site-packages/docutils/writers/s5_html/__init__.py +0 -352
  1527. venv/Lib/site-packages/docutils/writers/xetex/__init__.py +0 -149
  1528. venv/Lib/site-packages/future/__init__.py +0 -93
  1529. venv/Lib/site-packages/future/backports/__init__.py +0 -26
  1530. venv/Lib/site-packages/future/backports/_markupbase.py +0 -422
  1531. venv/Lib/site-packages/future/backports/datetime.py +0 -2152
  1532. venv/Lib/site-packages/future/backports/email/__init__.py +0 -78
  1533. venv/Lib/site-packages/future/backports/email/_encoded_words.py +0 -232
  1534. venv/Lib/site-packages/future/backports/email/_header_value_parser.py +0 -2965
  1535. venv/Lib/site-packages/future/backports/email/_parseaddr.py +0 -546
  1536. venv/Lib/site-packages/future/backports/email/_policybase.py +0 -365
  1537. venv/Lib/site-packages/future/backports/email/base64mime.py +0 -121
  1538. venv/Lib/site-packages/future/backports/email/charset.py +0 -409
  1539. venv/Lib/site-packages/future/backports/email/encoders.py +0 -90
  1540. venv/Lib/site-packages/future/backports/email/errors.py +0 -111
  1541. venv/Lib/site-packages/future/backports/email/feedparser.py +0 -525
  1542. venv/Lib/site-packages/future/backports/email/generator.py +0 -498
  1543. venv/Lib/site-packages/future/backports/email/header.py +0 -581
  1544. venv/Lib/site-packages/future/backports/email/headerregistry.py +0 -592
  1545. venv/Lib/site-packages/future/backports/email/iterators.py +0 -74
  1546. venv/Lib/site-packages/future/backports/email/message.py +0 -882
  1547. venv/Lib/site-packages/future/backports/email/mime/__init__.py +0 -0
  1548. venv/Lib/site-packages/future/backports/email/mime/application.py +0 -39
  1549. venv/Lib/site-packages/future/backports/email/mime/audio.py +0 -74
  1550. venv/Lib/site-packages/future/backports/email/mime/base.py +0 -25
  1551. venv/Lib/site-packages/future/backports/email/mime/image.py +0 -48
  1552. venv/Lib/site-packages/future/backports/email/mime/message.py +0 -36
  1553. venv/Lib/site-packages/future/backports/email/mime/multipart.py +0 -49
  1554. venv/Lib/site-packages/future/backports/email/mime/nonmultipart.py +0 -24
  1555. venv/Lib/site-packages/future/backports/email/mime/text.py +0 -44
  1556. venv/Lib/site-packages/future/backports/email/parser.py +0 -135
  1557. venv/Lib/site-packages/future/backports/email/policy.py +0 -193
  1558. venv/Lib/site-packages/future/backports/email/quoprimime.py +0 -326
  1559. venv/Lib/site-packages/future/backports/email/utils.py +0 -400
  1560. venv/Lib/site-packages/future/backports/html/__init__.py +0 -27
  1561. venv/Lib/site-packages/future/backports/html/entities.py +0 -2514
  1562. venv/Lib/site-packages/future/backports/html/parser.py +0 -536
  1563. venv/Lib/site-packages/future/backports/http/__init__.py +0 -0
  1564. venv/Lib/site-packages/future/backports/http/client.py +0 -1346
  1565. venv/Lib/site-packages/future/backports/http/cookiejar.py +0 -2116
  1566. venv/Lib/site-packages/future/backports/http/cookies.py +0 -598
  1567. venv/Lib/site-packages/future/backports/http/server.py +0 -1226
  1568. venv/Lib/site-packages/future/backports/misc.py +0 -958
  1569. venv/Lib/site-packages/future/backports/socket.py +0 -454
  1570. venv/Lib/site-packages/future/backports/socketserver.py +0 -747
  1571. venv/Lib/site-packages/future/backports/test/__init__.py +0 -9
  1572. venv/Lib/site-packages/future/backports/test/pystone.py +0 -272
  1573. venv/Lib/site-packages/future/backports/test/ssl_servers.py +0 -207
  1574. venv/Lib/site-packages/future/backports/test/support.py +0 -2048
  1575. venv/Lib/site-packages/future/backports/total_ordering.py +0 -38
  1576. venv/Lib/site-packages/future/backports/urllib/__init__.py +0 -0
  1577. venv/Lib/site-packages/future/backports/urllib/error.py +0 -75
  1578. venv/Lib/site-packages/future/backports/urllib/parse.py +0 -991
  1579. venv/Lib/site-packages/future/backports/urllib/request.py +0 -2647
  1580. venv/Lib/site-packages/future/backports/urllib/response.py +0 -103
  1581. venv/Lib/site-packages/future/backports/urllib/robotparser.py +0 -211
  1582. venv/Lib/site-packages/future/backports/xmlrpc/__init__.py +0 -1
  1583. venv/Lib/site-packages/future/backports/xmlrpc/client.py +0 -1496
  1584. venv/Lib/site-packages/future/backports/xmlrpc/server.py +0 -999
  1585. venv/Lib/site-packages/future/builtins/__init__.py +0 -51
  1586. venv/Lib/site-packages/future/builtins/disabled.py +0 -66
  1587. venv/Lib/site-packages/future/builtins/iterators.py +0 -52
  1588. venv/Lib/site-packages/future/builtins/misc.py +0 -135
  1589. venv/Lib/site-packages/future/builtins/new_min_max.py +0 -59
  1590. venv/Lib/site-packages/future/builtins/newnext.py +0 -70
  1591. venv/Lib/site-packages/future/builtins/newround.py +0 -105
  1592. venv/Lib/site-packages/future/builtins/newsuper.py +0 -113
  1593. venv/Lib/site-packages/future/moves/__init__.py +0 -8
  1594. venv/Lib/site-packages/future/moves/_dummy_thread.py +0 -8
  1595. venv/Lib/site-packages/future/moves/_markupbase.py +0 -8
  1596. venv/Lib/site-packages/future/moves/_thread.py +0 -8
  1597. venv/Lib/site-packages/future/moves/builtins.py +0 -10
  1598. venv/Lib/site-packages/future/moves/collections.py +0 -18
  1599. venv/Lib/site-packages/future/moves/configparser.py +0 -8
  1600. venv/Lib/site-packages/future/moves/copyreg.py +0 -12
  1601. venv/Lib/site-packages/future/moves/dbm/__init__.py +0 -20
  1602. venv/Lib/site-packages/future/moves/dbm/dumb.py +0 -9
  1603. venv/Lib/site-packages/future/moves/dbm/gnu.py +0 -9
  1604. venv/Lib/site-packages/future/moves/dbm/ndbm.py +0 -9
  1605. venv/Lib/site-packages/future/moves/html/__init__.py +0 -31
  1606. venv/Lib/site-packages/future/moves/html/entities.py +0 -8
  1607. venv/Lib/site-packages/future/moves/html/parser.py +0 -8
  1608. venv/Lib/site-packages/future/moves/http/__init__.py +0 -4
  1609. venv/Lib/site-packages/future/moves/http/client.py +0 -8
  1610. venv/Lib/site-packages/future/moves/http/cookiejar.py +0 -8
  1611. venv/Lib/site-packages/future/moves/http/cookies.py +0 -9
  1612. venv/Lib/site-packages/future/moves/http/server.py +0 -20
  1613. venv/Lib/site-packages/future/moves/itertools.py +0 -8
  1614. venv/Lib/site-packages/future/moves/pickle.py +0 -11
  1615. venv/Lib/site-packages/future/moves/queue.py +0 -8
  1616. venv/Lib/site-packages/future/moves/reprlib.py +0 -8
  1617. venv/Lib/site-packages/future/moves/socketserver.py +0 -8
  1618. venv/Lib/site-packages/future/moves/subprocess.py +0 -11
  1619. venv/Lib/site-packages/future/moves/sys.py +0 -8
  1620. venv/Lib/site-packages/future/moves/test/__init__.py +0 -5
  1621. venv/Lib/site-packages/future/moves/test/support.py +0 -10
  1622. venv/Lib/site-packages/future/moves/tkinter/__init__.py +0 -27
  1623. venv/Lib/site-packages/future/moves/tkinter/colorchooser.py +0 -12
  1624. venv/Lib/site-packages/future/moves/tkinter/commondialog.py +0 -12
  1625. venv/Lib/site-packages/future/moves/tkinter/constants.py +0 -12
  1626. venv/Lib/site-packages/future/moves/tkinter/dialog.py +0 -12
  1627. venv/Lib/site-packages/future/moves/tkinter/dnd.py +0 -12
  1628. venv/Lib/site-packages/future/moves/tkinter/filedialog.py +0 -18
  1629. venv/Lib/site-packages/future/moves/tkinter/font.py +0 -12
  1630. venv/Lib/site-packages/future/moves/tkinter/messagebox.py +0 -12
  1631. venv/Lib/site-packages/future/moves/tkinter/scrolledtext.py +0 -12
  1632. venv/Lib/site-packages/future/moves/tkinter/simpledialog.py +0 -12
  1633. venv/Lib/site-packages/future/moves/tkinter/tix.py +0 -12
  1634. venv/Lib/site-packages/future/moves/tkinter/ttk.py +0 -12
  1635. venv/Lib/site-packages/future/moves/urllib/__init__.py +0 -5
  1636. venv/Lib/site-packages/future/moves/urllib/error.py +0 -16
  1637. venv/Lib/site-packages/future/moves/urllib/parse.py +0 -28
  1638. venv/Lib/site-packages/future/moves/urllib/request.py +0 -94
  1639. venv/Lib/site-packages/future/moves/urllib/response.py +0 -12
  1640. venv/Lib/site-packages/future/moves/urllib/robotparser.py +0 -8
  1641. venv/Lib/site-packages/future/moves/winreg.py +0 -8
  1642. venv/Lib/site-packages/future/moves/xmlrpc/__init__.py +0 -0
  1643. venv/Lib/site-packages/future/moves/xmlrpc/client.py +0 -7
  1644. venv/Lib/site-packages/future/moves/xmlrpc/server.py +0 -7
  1645. venv/Lib/site-packages/future/standard_library/__init__.py +0 -815
  1646. venv/Lib/site-packages/future/tests/__init__.py +0 -0
  1647. venv/Lib/site-packages/future/tests/base.py +0 -539
  1648. venv/Lib/site-packages/future/types/__init__.py +0 -257
  1649. venv/Lib/site-packages/future/types/newbytes.py +0 -460
  1650. venv/Lib/site-packages/future/types/newdict.py +0 -76
  1651. venv/Lib/site-packages/future/types/newint.py +0 -384
  1652. venv/Lib/site-packages/future/types/newlist.py +0 -95
  1653. venv/Lib/site-packages/future/types/newmemoryview.py +0 -29
  1654. venv/Lib/site-packages/future/types/newobject.py +0 -117
  1655. venv/Lib/site-packages/future/types/newopen.py +0 -32
  1656. venv/Lib/site-packages/future/types/newrange.py +0 -170
  1657. venv/Lib/site-packages/future/types/newstr.py +0 -426
  1658. venv/Lib/site-packages/future/utils/__init__.py +0 -770
  1659. venv/Lib/site-packages/future/utils/surrogateescape.py +0 -198
  1660. venv/Lib/site-packages/idna/__init__.py +0 -44
  1661. venv/Lib/site-packages/idna/codec.py +0 -112
  1662. venv/Lib/site-packages/idna/compat.py +0 -13
  1663. venv/Lib/site-packages/idna/core.py +0 -400
  1664. venv/Lib/site-packages/idna/idnadata.py +0 -2151
  1665. venv/Lib/site-packages/idna/intranges.py +0 -54
  1666. venv/Lib/site-packages/idna/package_data.py +0 -2
  1667. venv/Lib/site-packages/idna/uts46data.py +0 -8600
  1668. venv/Lib/site-packages/importlib_metadata/__init__.py +0 -1095
  1669. venv/Lib/site-packages/importlib_metadata/_adapters.py +0 -68
  1670. venv/Lib/site-packages/importlib_metadata/_collections.py +0 -30
  1671. venv/Lib/site-packages/importlib_metadata/_compat.py +0 -72
  1672. venv/Lib/site-packages/importlib_metadata/_functools.py +0 -104
  1673. venv/Lib/site-packages/importlib_metadata/_itertools.py +0 -73
  1674. venv/Lib/site-packages/importlib_metadata/_meta.py +0 -48
  1675. venv/Lib/site-packages/importlib_metadata/_text.py +0 -99
  1676. venv/Lib/site-packages/jaraco/classes/__init__.py +0 -0
  1677. venv/Lib/site-packages/jaraco/classes/ancestry.py +0 -68
  1678. venv/Lib/site-packages/jaraco/classes/meta.py +0 -66
  1679. venv/Lib/site-packages/jaraco/classes/properties.py +0 -170
  1680. venv/Lib/site-packages/je_editor/__init__.py +0 -25
  1681. venv/Lib/site-packages/je_editor/__main__.py +0 -18
  1682. venv/Lib/site-packages/je_editor/ui/__init__.py +0 -1
  1683. venv/Lib/site-packages/je_editor/ui/editor_main_ui/__init__.py +0 -1
  1684. venv/Lib/site-packages/je_editor/ui/editor_main_ui/content_init/__init__.py +0 -0
  1685. venv/Lib/site-packages/je_editor/ui/editor_main_ui/content_init/content_init.py +0 -80
  1686. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/__init__.py +0 -0
  1687. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/build_menu.py +0 -10
  1688. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/file_menu/__init__.py +0 -0
  1689. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/file_menu/build_file_menu.py +0 -65
  1690. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/popup_menu/__init__.py +0 -0
  1691. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/popup_menu/build_popup_menu.py +0 -13
  1692. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/run_menu/__init__.py +0 -0
  1693. venv/Lib/site-packages/je_editor/ui/editor_main_ui/menu/run_menu/build_run_menu.py +0 -35
  1694. venv/Lib/site-packages/je_editor/ui/editor_main_ui/protocal_setting/__init__.py +0 -0
  1695. venv/Lib/site-packages/je_editor/ui/editor_main_ui/protocal_setting/set_ui_protocol.py +0 -8
  1696. venv/Lib/site-packages/je_editor/ui/editor_main_ui/redirect_output/__init__.py +0 -0
  1697. venv/Lib/site-packages/je_editor/ui/editor_main_ui/redirect_output/redirect_output_to_tkinter_ui.py +0 -26
  1698. venv/Lib/site-packages/je_editor/ui/editor_main_ui/tkinter_editor.py +0 -148
  1699. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_event_bind/__init__.py +0 -0
  1700. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_event_bind/event_bind.py +0 -26
  1701. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_grid/__init__.py +0 -0
  1702. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_grid/build_ui_grid.py +0 -24
  1703. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_setting/__init__.py +0 -0
  1704. venv/Lib/site-packages/je_editor/ui/editor_main_ui/ui_setting/ui_setting.py +0 -41
  1705. venv/Lib/site-packages/je_editor/ui/ui_event/__init__.py +0 -1
  1706. venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/__init__.py +0 -1
  1707. venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/start_auto_save/__init__.py +0 -0
  1708. venv/Lib/site-packages/je_editor/ui/ui_event/auto_save/start_auto_save/start_auto_save.py +0 -17
  1709. venv/Lib/site-packages/je_editor/ui/ui_event/change_font/__init__.py +0 -1
  1710. venv/Lib/site-packages/je_editor/ui/ui_event/change_font/change_font.py +0 -38
  1711. venv/Lib/site-packages/je_editor/ui/ui_event/clear_result/__init__.py +0 -0
  1712. venv/Lib/site-packages/je_editor/ui/ui_event/clear_result/clear_result.py +0 -8
  1713. venv/Lib/site-packages/je_editor/ui/ui_event/close/__init__.py +0 -1
  1714. venv/Lib/site-packages/je_editor/ui/ui_event/close/close_event.py +0 -12
  1715. venv/Lib/site-packages/je_editor/ui/ui_event/encoding/__init__.py +0 -0
  1716. venv/Lib/site-packages/je_editor/ui/ui_event/encoding/set_encoding.py +0 -10
  1717. venv/Lib/site-packages/je_editor/ui/ui_event/execute/__init__.py +0 -1
  1718. venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_code/__init__.py +0 -1
  1719. venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_code/exec_code.py +0 -22
  1720. venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_shell_command/__init__.py +0 -1
  1721. venv/Lib/site-packages/je_editor/ui/ui_event/execute/execute_shell_command/run_on_shell.py +0 -12
  1722. venv/Lib/site-packages/je_editor/ui/ui_event/language/__init__.py +0 -1
  1723. venv/Lib/site-packages/je_editor/ui/ui_event/language/set_language.py +0 -13
  1724. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/__init__.py +0 -1
  1725. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_file_to_read/__init__.py +0 -1
  1726. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_file_to_read/open_file_to_read.py +0 -20
  1727. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_last_edit_file/__init__.py +0 -1
  1728. venv/Lib/site-packages/je_editor/ui/ui_event/open_file/open_last_edit_file/open_last_edit_file.py +0 -17
  1729. venv/Lib/site-packages/je_editor/ui/ui_event/save_file/__init__.py +0 -0
  1730. venv/Lib/site-packages/je_editor/ui/ui_event/save_file/save_file_to_open/__init__.py +0 -1
  1731. venv/Lib/site-packages/je_editor/ui/ui_event/save_file/save_file_to_open/save_file_to_open.py +0 -19
  1732. venv/Lib/site-packages/je_editor/ui/ui_event/tag_keyword/__init__.py +0 -1
  1733. venv/Lib/site-packages/je_editor/ui/ui_event/tag_keyword/tag_keyword.py +0 -49
  1734. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/__init__.py +0 -0
  1735. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/__init__.py +0 -1
  1736. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/code_exec_manager.py +0 -169
  1737. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/program_exec/process_error.py +0 -10
  1738. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/shell/__init__.py +0 -1
  1739. venv/Lib/site-packages/je_editor/ui/ui_event/text_process/shell/shell_exec_manager.py +0 -130
  1740. venv/Lib/site-packages/je_editor/utils/__init__.py +0 -1
  1741. venv/Lib/site-packages/je_editor/utils/editor_content/__init__.py +0 -1
  1742. venv/Lib/site-packages/je_editor/utils/editor_content/content_save.py +0 -66
  1743. venv/Lib/site-packages/je_editor/utils/editor_content/editor_content_data.py +0 -19
  1744. venv/Lib/site-packages/je_editor/utils/encoding/__init__.py +0 -1
  1745. venv/Lib/site-packages/je_editor/utils/encoding/encoding_data_module.py +0 -101
  1746. venv/Lib/site-packages/je_editor/utils/exception/__init__.py +0 -1
  1747. venv/Lib/site-packages/je_editor/utils/exception/exception_tags.py +0 -33
  1748. venv/Lib/site-packages/je_editor/utils/exception/exceptions.py +0 -30
  1749. venv/Lib/site-packages/je_editor/utils/file/__init__.py +0 -0
  1750. venv/Lib/site-packages/je_editor/utils/file/open/__init__.py +0 -1
  1751. venv/Lib/site-packages/je_editor/utils/file/open/open_file.py +0 -52
  1752. venv/Lib/site-packages/je_editor/utils/file/save/__init__.py +0 -1
  1753. venv/Lib/site-packages/je_editor/utils/file/save/save_file.py +0 -81
  1754. venv/Lib/site-packages/je_editor/utils/font/__init__.py +0 -1
  1755. venv/Lib/site-packages/je_editor/utils/font/font.py +0 -20
  1756. venv/Lib/site-packages/je_editor/utils/json_format/__init__.py +0 -1
  1757. venv/Lib/site-packages/je_editor/utils/json_format/json_process.py +0 -28
  1758. venv/Lib/site-packages/je_editor/utils/keyword/__init__.py +0 -1
  1759. venv/Lib/site-packages/je_editor/utils/keyword/keyword_list.py +0 -4
  1760. venv/Lib/site-packages/je_editor/utils/language/__init__.py +0 -1
  1761. venv/Lib/site-packages/je_editor/utils/language/language_data_module.py +0 -9
  1762. venv/Lib/site-packages/je_editor/utils/language_data_module/__init__.py +0 -1
  1763. venv/Lib/site-packages/je_editor/utils/language_data_module/language_compiler_data_module.py +0 -7
  1764. venv/Lib/site-packages/je_editor/utils/language_data_module/language_param_data_module.py +0 -7
  1765. venv/Lib/site-packages/je_editor/utils/project/__init__.py +0 -0
  1766. venv/Lib/site-packages/je_editor/utils/project/create_project.py +0 -16
  1767. venv/Lib/site-packages/je_editor/utils/redirect_manager/__init__.py +0 -0
  1768. venv/Lib/site-packages/je_editor/utils/redirect_manager/redirect_manager_class.py +0 -70
  1769. venv/Lib/site-packages/je_editor/utils/string_translate/__init__.py +0 -1
  1770. venv/Lib/site-packages/je_editor/utils/string_translate/used_string.py +0 -4
  1771. venv/Lib/site-packages/je_editor/utils/theme/__init__.py +0 -0
  1772. venv/Lib/site-packages/je_editor/utils/theme/theme.py +0 -6
  1773. venv/Lib/site-packages/keyring/__init__.py +0 -17
  1774. venv/Lib/site-packages/keyring/__main__.py +0 -4
  1775. venv/Lib/site-packages/keyring/_compat.py +0 -7
  1776. venv/Lib/site-packages/keyring/_properties_compat.py +0 -169
  1777. venv/Lib/site-packages/keyring/backend.py +0 -256
  1778. venv/Lib/site-packages/keyring/backends/OS_X.py +0 -13
  1779. venv/Lib/site-packages/keyring/backends/SecretService.py +0 -119
  1780. venv/Lib/site-packages/keyring/backends/Windows.py +0 -170
  1781. venv/Lib/site-packages/keyring/backends/__init__.py +0 -0
  1782. venv/Lib/site-packages/keyring/backends/chainer.py +0 -71
  1783. venv/Lib/site-packages/keyring/backends/fail.py +0 -27
  1784. venv/Lib/site-packages/keyring/backends/kwallet.py +0 -165
  1785. venv/Lib/site-packages/keyring/backends/libsecret.py +0 -152
  1786. venv/Lib/site-packages/keyring/backends/macOS/__init__.py +0 -76
  1787. venv/Lib/site-packages/keyring/backends/macOS/api.py +0 -172
  1788. venv/Lib/site-packages/keyring/backends/null.py +0 -17
  1789. venv/Lib/site-packages/keyring/cli.py +0 -136
  1790. venv/Lib/site-packages/keyring/core.py +0 -186
  1791. venv/Lib/site-packages/keyring/credentials.py +0 -70
  1792. venv/Lib/site-packages/keyring/devpi_client.py +0 -19
  1793. venv/Lib/site-packages/keyring/errors.py +0 -61
  1794. venv/Lib/site-packages/keyring/http.py +0 -39
  1795. venv/Lib/site-packages/keyring/py310compat.py +0 -10
  1796. venv/Lib/site-packages/keyring/testing/__init__.py +0 -0
  1797. venv/Lib/site-packages/keyring/testing/backend.py +0 -172
  1798. venv/Lib/site-packages/keyring/testing/util.py +0 -71
  1799. venv/Lib/site-packages/keyring/util/__init__.py +0 -37
  1800. venv/Lib/site-packages/keyring/util/platform_.py +0 -68
  1801. venv/Lib/site-packages/keyring/util/properties.py +0 -18
  1802. venv/Lib/site-packages/libfuturize/__init__.py +0 -1
  1803. venv/Lib/site-packages/libfuturize/fixer_util.py +0 -520
  1804. venv/Lib/site-packages/libfuturize/fixes/__init__.py +0 -97
  1805. venv/Lib/site-packages/libfuturize/fixes/fix_UserDict.py +0 -102
  1806. venv/Lib/site-packages/libfuturize/fixes/fix_absolute_import.py +0 -91
  1807. venv/Lib/site-packages/libfuturize/fixes/fix_add__future__imports_except_unicode_literals.py +0 -26
  1808. venv/Lib/site-packages/libfuturize/fixes/fix_basestring.py +0 -17
  1809. venv/Lib/site-packages/libfuturize/fixes/fix_bytes.py +0 -24
  1810. venv/Lib/site-packages/libfuturize/fixes/fix_cmp.py +0 -33
  1811. venv/Lib/site-packages/libfuturize/fixes/fix_division.py +0 -12
  1812. venv/Lib/site-packages/libfuturize/fixes/fix_division_safe.py +0 -109
  1813. venv/Lib/site-packages/libfuturize/fixes/fix_execfile.py +0 -37
  1814. venv/Lib/site-packages/libfuturize/fixes/fix_future_builtins.py +0 -59
  1815. venv/Lib/site-packages/libfuturize/fixes/fix_future_standard_library.py +0 -24
  1816. venv/Lib/site-packages/libfuturize/fixes/fix_future_standard_library_urllib.py +0 -28
  1817. venv/Lib/site-packages/libfuturize/fixes/fix_input.py +0 -32
  1818. venv/Lib/site-packages/libfuturize/fixes/fix_metaclass.py +0 -262
  1819. venv/Lib/site-packages/libfuturize/fixes/fix_next_call.py +0 -104
  1820. venv/Lib/site-packages/libfuturize/fixes/fix_object.py +0 -17
  1821. venv/Lib/site-packages/libfuturize/fixes/fix_oldstr_wrap.py +0 -39
  1822. venv/Lib/site-packages/libfuturize/fixes/fix_order___future__imports.py +0 -36
  1823. venv/Lib/site-packages/libfuturize/fixes/fix_print.py +0 -104
  1824. venv/Lib/site-packages/libfuturize/fixes/fix_print_with_import.py +0 -22
  1825. venv/Lib/site-packages/libfuturize/fixes/fix_raise.py +0 -107
  1826. venv/Lib/site-packages/libfuturize/fixes/fix_remove_old__future__imports.py +0 -26
  1827. venv/Lib/site-packages/libfuturize/fixes/fix_unicode_keep_u.py +0 -24
  1828. venv/Lib/site-packages/libfuturize/fixes/fix_unicode_literals_import.py +0 -18
  1829. venv/Lib/site-packages/libfuturize/fixes/fix_xrange_with_import.py +0 -20
  1830. venv/Lib/site-packages/libfuturize/main.py +0 -322
  1831. venv/Lib/site-packages/libpasteurize/__init__.py +0 -1
  1832. venv/Lib/site-packages/libpasteurize/fixes/__init__.py +0 -54
  1833. venv/Lib/site-packages/libpasteurize/fixes/feature_base.py +0 -57
  1834. venv/Lib/site-packages/libpasteurize/fixes/fix_add_all__future__imports.py +0 -24
  1835. venv/Lib/site-packages/libpasteurize/fixes/fix_add_all_future_builtins.py +0 -37
  1836. venv/Lib/site-packages/libpasteurize/fixes/fix_add_future_standard_library_import.py +0 -23
  1837. venv/Lib/site-packages/libpasteurize/fixes/fix_annotations.py +0 -48
  1838. venv/Lib/site-packages/libpasteurize/fixes/fix_division.py +0 -28
  1839. venv/Lib/site-packages/libpasteurize/fixes/fix_features.py +0 -86
  1840. venv/Lib/site-packages/libpasteurize/fixes/fix_fullargspec.py +0 -16
  1841. venv/Lib/site-packages/libpasteurize/fixes/fix_future_builtins.py +0 -46
  1842. venv/Lib/site-packages/libpasteurize/fixes/fix_getcwd.py +0 -26
  1843. venv/Lib/site-packages/libpasteurize/fixes/fix_imports.py +0 -112
  1844. venv/Lib/site-packages/libpasteurize/fixes/fix_imports2.py +0 -174
  1845. venv/Lib/site-packages/libpasteurize/fixes/fix_kwargs.py +0 -147
  1846. venv/Lib/site-packages/libpasteurize/fixes/fix_memoryview.py +0 -21
  1847. venv/Lib/site-packages/libpasteurize/fixes/fix_metaclass.py +0 -78
  1848. venv/Lib/site-packages/libpasteurize/fixes/fix_newstyle.py +0 -33
  1849. venv/Lib/site-packages/libpasteurize/fixes/fix_next.py +0 -43
  1850. venv/Lib/site-packages/libpasteurize/fixes/fix_printfunction.py +0 -17
  1851. venv/Lib/site-packages/libpasteurize/fixes/fix_raise.py +0 -25
  1852. venv/Lib/site-packages/libpasteurize/fixes/fix_raise_.py +0 -35
  1853. venv/Lib/site-packages/libpasteurize/fixes/fix_throw.py +0 -23
  1854. venv/Lib/site-packages/libpasteurize/fixes/fix_unpacking.py +0 -120
  1855. venv/Lib/site-packages/libpasteurize/main.py +0 -204
  1856. venv/Lib/site-packages/more_itertools/__init__.py +0 -6
  1857. venv/Lib/site-packages/more_itertools/more.py +0 -4347
  1858. venv/Lib/site-packages/more_itertools/recipes.py +0 -841
  1859. venv/Lib/site-packages/ordlookup/__init__.py +0 -45
  1860. venv/Lib/site-packages/ordlookup/oleaut32.py +0 -400
  1861. venv/Lib/site-packages/ordlookup/ws2_32.py +0 -119
  1862. venv/Lib/site-packages/packaging/__init__.py +0 -15
  1863. venv/Lib/site-packages/packaging/_elffile.py +0 -108
  1864. venv/Lib/site-packages/packaging/_manylinux.py +0 -238
  1865. venv/Lib/site-packages/packaging/_musllinux.py +0 -80
  1866. venv/Lib/site-packages/packaging/_parser.py +0 -328
  1867. venv/Lib/site-packages/packaging/_structures.py +0 -61
  1868. venv/Lib/site-packages/packaging/_tokenizer.py +0 -188
  1869. venv/Lib/site-packages/packaging/markers.py +0 -245
  1870. venv/Lib/site-packages/packaging/requirements.py +0 -95
  1871. venv/Lib/site-packages/packaging/specifiers.py +0 -1005
  1872. venv/Lib/site-packages/packaging/tags.py +0 -546
  1873. venv/Lib/site-packages/packaging/utils.py +0 -141
  1874. venv/Lib/site-packages/packaging/version.py +0 -563
  1875. venv/Lib/site-packages/past/__init__.py +0 -90
  1876. venv/Lib/site-packages/past/builtins/__init__.py +0 -72
  1877. venv/Lib/site-packages/past/builtins/misc.py +0 -161
  1878. venv/Lib/site-packages/past/builtins/noniterators.py +0 -272
  1879. venv/Lib/site-packages/past/translation/__init__.py +0 -485
  1880. venv/Lib/site-packages/past/types/__init__.py +0 -29
  1881. venv/Lib/site-packages/past/types/basestring.py +0 -38
  1882. venv/Lib/site-packages/past/types/olddict.py +0 -96
  1883. venv/Lib/site-packages/past/types/oldstr.py +0 -135
  1884. venv/Lib/site-packages/past/utils/__init__.py +0 -97
  1885. venv/Lib/site-packages/pefile.py +0 -7437
  1886. venv/Lib/site-packages/peutils.py +0 -592
  1887. venv/Lib/site-packages/pip/__init__.py +0 -13
  1888. venv/Lib/site-packages/pip/__main__.py +0 -31
  1889. venv/Lib/site-packages/pip/__pip-runner__.py +0 -50
  1890. venv/Lib/site-packages/pip/_internal/__init__.py +0 -19
  1891. venv/Lib/site-packages/pip/_internal/build_env.py +0 -310
  1892. venv/Lib/site-packages/pip/_internal/cache.py +0 -293
  1893. venv/Lib/site-packages/pip/_internal/cli/__init__.py +0 -4
  1894. venv/Lib/site-packages/pip/_internal/cli/autocompletion.py +0 -171
  1895. venv/Lib/site-packages/pip/_internal/cli/base_command.py +0 -216
  1896. venv/Lib/site-packages/pip/_internal/cli/cmdoptions.py +0 -1049
  1897. venv/Lib/site-packages/pip/_internal/cli/command_context.py +0 -27
  1898. venv/Lib/site-packages/pip/_internal/cli/main.py +0 -70
  1899. venv/Lib/site-packages/pip/_internal/cli/main_parser.py +0 -134
  1900. venv/Lib/site-packages/pip/_internal/cli/parser.py +0 -294
  1901. venv/Lib/site-packages/pip/_internal/cli/progress_bars.py +0 -68
  1902. venv/Lib/site-packages/pip/_internal/cli/req_command.py +0 -502
  1903. venv/Lib/site-packages/pip/_internal/cli/spinners.py +0 -159
  1904. venv/Lib/site-packages/pip/_internal/cli/status_codes.py +0 -6
  1905. venv/Lib/site-packages/pip/_internal/commands/__init__.py +0 -132
  1906. venv/Lib/site-packages/pip/_internal/commands/cache.py +0 -223
  1907. venv/Lib/site-packages/pip/_internal/commands/check.py +0 -53
  1908. venv/Lib/site-packages/pip/_internal/commands/completion.py +0 -126
  1909. venv/Lib/site-packages/pip/_internal/commands/configuration.py +0 -282
  1910. venv/Lib/site-packages/pip/_internal/commands/debug.py +0 -199
  1911. venv/Lib/site-packages/pip/_internal/commands/download.py +0 -149
  1912. venv/Lib/site-packages/pip/_internal/commands/freeze.py +0 -97
  1913. venv/Lib/site-packages/pip/_internal/commands/hash.py +0 -59
  1914. venv/Lib/site-packages/pip/_internal/commands/help.py +0 -41
  1915. venv/Lib/site-packages/pip/_internal/commands/index.py +0 -138
  1916. venv/Lib/site-packages/pip/_internal/commands/inspect.py +0 -97
  1917. venv/Lib/site-packages/pip/_internal/commands/install.py +0 -860
  1918. venv/Lib/site-packages/pip/_internal/commands/list.py +0 -365
  1919. venv/Lib/site-packages/pip/_internal/commands/search.py +0 -174
  1920. venv/Lib/site-packages/pip/_internal/commands/show.py +0 -183
  1921. venv/Lib/site-packages/pip/_internal/commands/uninstall.py +0 -106
  1922. venv/Lib/site-packages/pip/_internal/commands/wheel.py +0 -203
  1923. venv/Lib/site-packages/pip/_internal/configuration.py +0 -374
  1924. venv/Lib/site-packages/pip/_internal/distributions/__init__.py +0 -21
  1925. venv/Lib/site-packages/pip/_internal/distributions/base.py +0 -39
  1926. venv/Lib/site-packages/pip/_internal/distributions/installed.py +0 -23
  1927. venv/Lib/site-packages/pip/_internal/distributions/sdist.py +0 -150
  1928. venv/Lib/site-packages/pip/_internal/distributions/wheel.py +0 -34
  1929. venv/Lib/site-packages/pip/_internal/exceptions.py +0 -660
  1930. venv/Lib/site-packages/pip/_internal/index/__init__.py +0 -2
  1931. venv/Lib/site-packages/pip/_internal/index/collector.py +0 -505
  1932. venv/Lib/site-packages/pip/_internal/index/package_finder.py +0 -1025
  1933. venv/Lib/site-packages/pip/_internal/index/sources.py +0 -224
  1934. venv/Lib/site-packages/pip/_internal/locations/__init__.py +0 -528
  1935. venv/Lib/site-packages/pip/_internal/locations/_distutils.py +0 -180
  1936. venv/Lib/site-packages/pip/_internal/locations/_sysconfig.py +0 -218
  1937. venv/Lib/site-packages/pip/_internal/locations/base.py +0 -81
  1938. venv/Lib/site-packages/pip/_internal/main.py +0 -12
  1939. venv/Lib/site-packages/pip/_internal/metadata/__init__.py +0 -127
  1940. venv/Lib/site-packages/pip/_internal/metadata/_json.py +0 -84
  1941. venv/Lib/site-packages/pip/_internal/metadata/base.py +0 -688
  1942. venv/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +0 -4
  1943. venv/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +0 -55
  1944. venv/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +0 -224
  1945. venv/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +0 -188
  1946. venv/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +0 -270
  1947. venv/Lib/site-packages/pip/_internal/models/__init__.py +0 -2
  1948. venv/Lib/site-packages/pip/_internal/models/candidate.py +0 -34
  1949. venv/Lib/site-packages/pip/_internal/models/direct_url.py +0 -212
  1950. venv/Lib/site-packages/pip/_internal/models/format_control.py +0 -80
  1951. venv/Lib/site-packages/pip/_internal/models/index.py +0 -28
  1952. venv/Lib/site-packages/pip/_internal/models/installation_report.py +0 -53
  1953. venv/Lib/site-packages/pip/_internal/models/link.py +0 -507
  1954. venv/Lib/site-packages/pip/_internal/models/scheme.py +0 -31
  1955. venv/Lib/site-packages/pip/_internal/models/search_scope.py +0 -133
  1956. venv/Lib/site-packages/pip/_internal/models/selection_prefs.py +0 -51
  1957. venv/Lib/site-packages/pip/_internal/models/target_python.py +0 -110
  1958. venv/Lib/site-packages/pip/_internal/models/wheel.py +0 -92
  1959. venv/Lib/site-packages/pip/_internal/network/__init__.py +0 -2
  1960. venv/Lib/site-packages/pip/_internal/network/auth.py +0 -323
  1961. venv/Lib/site-packages/pip/_internal/network/cache.py +0 -69
  1962. venv/Lib/site-packages/pip/_internal/network/download.py +0 -186
  1963. venv/Lib/site-packages/pip/_internal/network/lazy_wheel.py +0 -210
  1964. venv/Lib/site-packages/pip/_internal/network/session.py +0 -518
  1965. venv/Lib/site-packages/pip/_internal/network/utils.py +0 -96
  1966. venv/Lib/site-packages/pip/_internal/network/xmlrpc.py +0 -60
  1967. venv/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
  1968. venv/Lib/site-packages/pip/_internal/operations/build/__init__.py +0 -0
  1969. venv/Lib/site-packages/pip/_internal/operations/build/build_tracker.py +0 -124
  1970. venv/Lib/site-packages/pip/_internal/operations/build/metadata.py +0 -39
  1971. venv/Lib/site-packages/pip/_internal/operations/build/metadata_editable.py +0 -41
  1972. venv/Lib/site-packages/pip/_internal/operations/build/metadata_legacy.py +0 -74
  1973. venv/Lib/site-packages/pip/_internal/operations/build/wheel.py +0 -37
  1974. venv/Lib/site-packages/pip/_internal/operations/build/wheel_editable.py +0 -46
  1975. venv/Lib/site-packages/pip/_internal/operations/build/wheel_legacy.py +0 -102
  1976. venv/Lib/site-packages/pip/_internal/operations/check.py +0 -149
  1977. venv/Lib/site-packages/pip/_internal/operations/freeze.py +0 -254
  1978. venv/Lib/site-packages/pip/_internal/operations/install/__init__.py +0 -2
  1979. venv/Lib/site-packages/pip/_internal/operations/install/editable_legacy.py +0 -47
  1980. venv/Lib/site-packages/pip/_internal/operations/install/legacy.py +0 -120
  1981. venv/Lib/site-packages/pip/_internal/operations/install/wheel.py +0 -738
  1982. venv/Lib/site-packages/pip/_internal/operations/prepare.py +0 -667
  1983. venv/Lib/site-packages/pip/_internal/pyproject.py +0 -175
  1984. venv/Lib/site-packages/pip/_internal/req/__init__.py +0 -94
  1985. venv/Lib/site-packages/pip/_internal/req/constructors.py +0 -501
  1986. venv/Lib/site-packages/pip/_internal/req/req_file.py +0 -544
  1987. venv/Lib/site-packages/pip/_internal/req/req_install.py +0 -942
  1988. venv/Lib/site-packages/pip/_internal/req/req_set.py +0 -82
  1989. venv/Lib/site-packages/pip/_internal/req/req_uninstall.py +0 -640
  1990. venv/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
  1991. venv/Lib/site-packages/pip/_internal/resolution/base.py +0 -20
  1992. venv/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
  1993. venv/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +0 -600
  1994. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
  1995. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +0 -141
  1996. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +0 -556
  1997. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +0 -731
  1998. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +0 -155
  1999. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +0 -248
  2000. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +0 -68
  2001. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +0 -166
  2002. venv/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +0 -296
  2003. venv/Lib/site-packages/pip/_internal/self_outdated_check.py +0 -239
  2004. venv/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
  2005. venv/Lib/site-packages/pip/_internal/utils/_log.py +0 -38
  2006. venv/Lib/site-packages/pip/_internal/utils/appdirs.py +0 -52
  2007. venv/Lib/site-packages/pip/_internal/utils/compat.py +0 -63
  2008. venv/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +0 -165
  2009. venv/Lib/site-packages/pip/_internal/utils/datetime.py +0 -11
  2010. venv/Lib/site-packages/pip/_internal/utils/deprecation.py +0 -188
  2011. venv/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +0 -87
  2012. venv/Lib/site-packages/pip/_internal/utils/distutils_args.py +0 -43
  2013. venv/Lib/site-packages/pip/_internal/utils/egg_link.py +0 -75
  2014. venv/Lib/site-packages/pip/_internal/utils/encoding.py +0 -36
  2015. venv/Lib/site-packages/pip/_internal/utils/entrypoints.py +0 -84
  2016. venv/Lib/site-packages/pip/_internal/utils/filesystem.py +0 -153
  2017. venv/Lib/site-packages/pip/_internal/utils/filetypes.py +0 -27
  2018. venv/Lib/site-packages/pip/_internal/utils/glibc.py +0 -88
  2019. venv/Lib/site-packages/pip/_internal/utils/hashes.py +0 -144
  2020. venv/Lib/site-packages/pip/_internal/utils/inject_securetransport.py +0 -35
  2021. venv/Lib/site-packages/pip/_internal/utils/logging.py +0 -348
  2022. venv/Lib/site-packages/pip/_internal/utils/misc.py +0 -723
  2023. venv/Lib/site-packages/pip/_internal/utils/models.py +0 -39
  2024. venv/Lib/site-packages/pip/_internal/utils/packaging.py +0 -57
  2025. venv/Lib/site-packages/pip/_internal/utils/setuptools_build.py +0 -195
  2026. venv/Lib/site-packages/pip/_internal/utils/subprocess.py +0 -260
  2027. venv/Lib/site-packages/pip/_internal/utils/temp_dir.py +0 -246
  2028. venv/Lib/site-packages/pip/_internal/utils/unpacking.py +0 -257
  2029. venv/Lib/site-packages/pip/_internal/utils/urls.py +0 -62
  2030. venv/Lib/site-packages/pip/_internal/utils/virtualenv.py +0 -104
  2031. venv/Lib/site-packages/pip/_internal/utils/wheel.py +0 -136
  2032. venv/Lib/site-packages/pip/_internal/vcs/__init__.py +0 -15
  2033. venv/Lib/site-packages/pip/_internal/vcs/bazaar.py +0 -112
  2034. venv/Lib/site-packages/pip/_internal/vcs/git.py +0 -526
  2035. venv/Lib/site-packages/pip/_internal/vcs/mercurial.py +0 -163
  2036. venv/Lib/site-packages/pip/_internal/vcs/subversion.py +0 -324
  2037. venv/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +0 -705
  2038. venv/Lib/site-packages/pip/_internal/wheel_builder.py +0 -382
  2039. venv/Lib/site-packages/pip/_vendor/__init__.py +0 -120
  2040. venv/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +0 -18
  2041. venv/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +0 -61
  2042. venv/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +0 -137
  2043. venv/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +0 -65
  2044. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +0 -9
  2045. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +0 -188
  2046. venv/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +0 -39
  2047. venv/Lib/site-packages/pip/_vendor/cachecontrol/compat.py +0 -32
  2048. venv/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +0 -439
  2049. venv/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +0 -111
  2050. venv/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +0 -139
  2051. venv/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +0 -190
  2052. venv/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +0 -33
  2053. venv/Lib/site-packages/pip/_vendor/certifi/__init__.py +0 -4
  2054. venv/Lib/site-packages/pip/_vendor/certifi/__main__.py +0 -12
  2055. venv/Lib/site-packages/pip/_vendor/certifi/core.py +0 -108
  2056. venv/Lib/site-packages/pip/_vendor/chardet/__init__.py +0 -93
  2057. venv/Lib/site-packages/pip/_vendor/chardet/big5freq.py +0 -386
  2058. venv/Lib/site-packages/pip/_vendor/chardet/big5prober.py +0 -47
  2059. venv/Lib/site-packages/pip/_vendor/chardet/chardistribution.py +0 -259
  2060. venv/Lib/site-packages/pip/_vendor/chardet/charsetgroupprober.py +0 -109
  2061. venv/Lib/site-packages/pip/_vendor/chardet/charsetprober.py +0 -138
  2062. venv/Lib/site-packages/pip/_vendor/chardet/cli/__init__.py +0 -0
  2063. venv/Lib/site-packages/pip/_vendor/chardet/cli/chardetect.py +0 -86
  2064. venv/Lib/site-packages/pip/_vendor/chardet/codingstatemachine.py +0 -88
  2065. venv/Lib/site-packages/pip/_vendor/chardet/cp949prober.py +0 -49
  2066. venv/Lib/site-packages/pip/_vendor/chardet/enums.py +0 -82
  2067. venv/Lib/site-packages/pip/_vendor/chardet/escprober.py +0 -102
  2068. venv/Lib/site-packages/pip/_vendor/chardet/escsm.py +0 -260
  2069. venv/Lib/site-packages/pip/_vendor/chardet/eucjpprober.py +0 -95
  2070. venv/Lib/site-packages/pip/_vendor/chardet/euckrfreq.py +0 -196
  2071. venv/Lib/site-packages/pip/_vendor/chardet/euckrprober.py +0 -47
  2072. venv/Lib/site-packages/pip/_vendor/chardet/euctwfreq.py +0 -388
  2073. venv/Lib/site-packages/pip/_vendor/chardet/euctwprober.py +0 -47
  2074. venv/Lib/site-packages/pip/_vendor/chardet/gb2312freq.py +0 -284
  2075. venv/Lib/site-packages/pip/_vendor/chardet/gb2312prober.py +0 -47
  2076. venv/Lib/site-packages/pip/_vendor/chardet/hebrewprober.py +0 -302
  2077. venv/Lib/site-packages/pip/_vendor/chardet/jisfreq.py +0 -325
  2078. venv/Lib/site-packages/pip/_vendor/chardet/johabfreq.py +0 -2382
  2079. venv/Lib/site-packages/pip/_vendor/chardet/johabprober.py +0 -47
  2080. venv/Lib/site-packages/pip/_vendor/chardet/jpcntx.py +0 -237
  2081. venv/Lib/site-packages/pip/_vendor/chardet/langbulgarianmodel.py +0 -4649
  2082. venv/Lib/site-packages/pip/_vendor/chardet/langgreekmodel.py +0 -4397
  2083. venv/Lib/site-packages/pip/_vendor/chardet/langhebrewmodel.py +0 -4380
  2084. venv/Lib/site-packages/pip/_vendor/chardet/langhungarianmodel.py +0 -4649
  2085. venv/Lib/site-packages/pip/_vendor/chardet/langrussianmodel.py +0 -5725
  2086. venv/Lib/site-packages/pip/_vendor/chardet/langthaimodel.py +0 -4380
  2087. venv/Lib/site-packages/pip/_vendor/chardet/langturkishmodel.py +0 -4380
  2088. venv/Lib/site-packages/pip/_vendor/chardet/latin1prober.py +0 -145
  2089. venv/Lib/site-packages/pip/_vendor/chardet/mbcharsetprober.py +0 -95
  2090. venv/Lib/site-packages/pip/_vendor/chardet/mbcsgroupprober.py +0 -56
  2091. venv/Lib/site-packages/pip/_vendor/chardet/mbcssm.py +0 -660
  2092. venv/Lib/site-packages/pip/_vendor/chardet/metadata/__init__.py +0 -0
  2093. venv/Lib/site-packages/pip/_vendor/chardet/metadata/languages.py +0 -351
  2094. venv/Lib/site-packages/pip/_vendor/chardet/sbcharsetprober.py +0 -160
  2095. venv/Lib/site-packages/pip/_vendor/chardet/sbcsgroupprober.py +0 -88
  2096. venv/Lib/site-packages/pip/_vendor/chardet/sjisprober.py +0 -98
  2097. venv/Lib/site-packages/pip/_vendor/chardet/universaldetector.py +0 -328
  2098. venv/Lib/site-packages/pip/_vendor/chardet/utf1632prober.py +0 -223
  2099. venv/Lib/site-packages/pip/_vendor/chardet/utf8prober.py +0 -80
  2100. venv/Lib/site-packages/pip/_vendor/chardet/version.py +0 -9
  2101. venv/Lib/site-packages/pip/_vendor/colorama/__init__.py +0 -6
  2102. venv/Lib/site-packages/pip/_vendor/colorama/ansi.py +0 -102
  2103. venv/Lib/site-packages/pip/_vendor/colorama/ansitowin32.py +0 -266
  2104. venv/Lib/site-packages/pip/_vendor/colorama/initialise.py +0 -80
  2105. venv/Lib/site-packages/pip/_vendor/colorama/win32.py +0 -152
  2106. venv/Lib/site-packages/pip/_vendor/colorama/winterm.py +0 -169
  2107. venv/Lib/site-packages/pip/_vendor/distlib/__init__.py +0 -23
  2108. venv/Lib/site-packages/pip/_vendor/distlib/compat.py +0 -1116
  2109. venv/Lib/site-packages/pip/_vendor/distlib/database.py +0 -1350
  2110. venv/Lib/site-packages/pip/_vendor/distlib/index.py +0 -508
  2111. venv/Lib/site-packages/pip/_vendor/distlib/locators.py +0 -1300
  2112. venv/Lib/site-packages/pip/_vendor/distlib/manifest.py +0 -393
  2113. venv/Lib/site-packages/pip/_vendor/distlib/markers.py +0 -152
  2114. venv/Lib/site-packages/pip/_vendor/distlib/metadata.py +0 -1076
  2115. venv/Lib/site-packages/pip/_vendor/distlib/resources.py +0 -358
  2116. venv/Lib/site-packages/pip/_vendor/distlib/scripts.py +0 -437
  2117. venv/Lib/site-packages/pip/_vendor/distlib/util.py +0 -1932
  2118. venv/Lib/site-packages/pip/_vendor/distlib/version.py +0 -739
  2119. venv/Lib/site-packages/pip/_vendor/distlib/wheel.py +0 -1082
  2120. venv/Lib/site-packages/pip/_vendor/distro/__init__.py +0 -54
  2121. venv/Lib/site-packages/pip/_vendor/distro/__main__.py +0 -4
  2122. venv/Lib/site-packages/pip/_vendor/distro/distro.py +0 -1374
  2123. venv/Lib/site-packages/pip/_vendor/idna/__init__.py +0 -44
  2124. venv/Lib/site-packages/pip/_vendor/idna/codec.py +0 -112
  2125. venv/Lib/site-packages/pip/_vendor/idna/compat.py +0 -13
  2126. venv/Lib/site-packages/pip/_vendor/idna/core.py +0 -400
  2127. venv/Lib/site-packages/pip/_vendor/idna/idnadata.py +0 -2151
  2128. venv/Lib/site-packages/pip/_vendor/idna/intranges.py +0 -54
  2129. venv/Lib/site-packages/pip/_vendor/idna/package_data.py +0 -2
  2130. venv/Lib/site-packages/pip/_vendor/idna/uts46data.py +0 -8600
  2131. venv/Lib/site-packages/pip/_vendor/msgpack/__init__.py +0 -57
  2132. venv/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +0 -48
  2133. venv/Lib/site-packages/pip/_vendor/msgpack/ext.py +0 -193
  2134. venv/Lib/site-packages/pip/_vendor/msgpack/fallback.py +0 -1010
  2135. venv/Lib/site-packages/pip/_vendor/packaging/__about__.py +0 -26
  2136. venv/Lib/site-packages/pip/_vendor/packaging/__init__.py +0 -25
  2137. venv/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +0 -301
  2138. venv/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +0 -136
  2139. venv/Lib/site-packages/pip/_vendor/packaging/_structures.py +0 -61
  2140. venv/Lib/site-packages/pip/_vendor/packaging/markers.py +0 -304
  2141. venv/Lib/site-packages/pip/_vendor/packaging/requirements.py +0 -146
  2142. venv/Lib/site-packages/pip/_vendor/packaging/specifiers.py +0 -802
  2143. venv/Lib/site-packages/pip/_vendor/packaging/tags.py +0 -487
  2144. venv/Lib/site-packages/pip/_vendor/packaging/utils.py +0 -136
  2145. venv/Lib/site-packages/pip/_vendor/packaging/version.py +0 -504
  2146. venv/Lib/site-packages/pip/_vendor/pep517/__init__.py +0 -6
  2147. venv/Lib/site-packages/pip/_vendor/pep517/_compat.py +0 -8
  2148. venv/Lib/site-packages/pip/_vendor/pep517/build.py +0 -126
  2149. venv/Lib/site-packages/pip/_vendor/pep517/check.py +0 -207
  2150. venv/Lib/site-packages/pip/_vendor/pep517/colorlog.py +0 -113
  2151. venv/Lib/site-packages/pip/_vendor/pep517/dirtools.py +0 -19
  2152. venv/Lib/site-packages/pip/_vendor/pep517/envbuild.py +0 -170
  2153. venv/Lib/site-packages/pip/_vendor/pep517/in_process/__init__.py +0 -26
  2154. venv/Lib/site-packages/pip/_vendor/pep517/in_process/_in_process.py +0 -351
  2155. venv/Lib/site-packages/pip/_vendor/pep517/meta.py +0 -93
  2156. venv/Lib/site-packages/pip/_vendor/pep517/wrappers.py +0 -362
  2157. venv/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +0 -3296
  2158. venv/Lib/site-packages/pip/_vendor/pkg_resources/py31compat.py +0 -23
  2159. venv/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +0 -340
  2160. venv/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +0 -46
  2161. venv/Lib/site-packages/pip/_vendor/platformdirs/android.py +0 -120
  2162. venv/Lib/site-packages/pip/_vendor/platformdirs/api.py +0 -156
  2163. venv/Lib/site-packages/pip/_vendor/platformdirs/macos.py +0 -64
  2164. venv/Lib/site-packages/pip/_vendor/platformdirs/unix.py +0 -181
  2165. venv/Lib/site-packages/pip/_vendor/platformdirs/version.py +0 -4
  2166. venv/Lib/site-packages/pip/_vendor/platformdirs/windows.py +0 -182
  2167. venv/Lib/site-packages/pip/_vendor/pygments/__init__.py +0 -82
  2168. venv/Lib/site-packages/pip/_vendor/pygments/__main__.py +0 -17
  2169. venv/Lib/site-packages/pip/_vendor/pygments/cmdline.py +0 -668
  2170. venv/Lib/site-packages/pip/_vendor/pygments/console.py +0 -70
  2171. venv/Lib/site-packages/pip/_vendor/pygments/filter.py +0 -71
  2172. venv/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +0 -940
  2173. venv/Lib/site-packages/pip/_vendor/pygments/formatter.py +0 -94
  2174. venv/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +0 -143
  2175. venv/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +0 -23
  2176. venv/Lib/site-packages/pip/_vendor/pygments/formatters/bbcode.py +0 -108
  2177. venv/Lib/site-packages/pip/_vendor/pygments/formatters/groff.py +0 -170
  2178. venv/Lib/site-packages/pip/_vendor/pygments/formatters/html.py +0 -989
  2179. venv/Lib/site-packages/pip/_vendor/pygments/formatters/img.py +0 -645
  2180. venv/Lib/site-packages/pip/_vendor/pygments/formatters/irc.py +0 -179
  2181. venv/Lib/site-packages/pip/_vendor/pygments/formatters/latex.py +0 -521
  2182. venv/Lib/site-packages/pip/_vendor/pygments/formatters/other.py +0 -161
  2183. venv/Lib/site-packages/pip/_vendor/pygments/formatters/pangomarkup.py +0 -83
  2184. venv/Lib/site-packages/pip/_vendor/pygments/formatters/rtf.py +0 -146
  2185. venv/Lib/site-packages/pip/_vendor/pygments/formatters/svg.py +0 -188
  2186. venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal.py +0 -127
  2187. venv/Lib/site-packages/pip/_vendor/pygments/formatters/terminal256.py +0 -338
  2188. venv/Lib/site-packages/pip/_vendor/pygments/lexer.py +0 -882
  2189. venv/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +0 -335
  2190. venv/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +0 -541
  2191. venv/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +0 -1204
  2192. venv/Lib/site-packages/pip/_vendor/pygments/modeline.py +0 -43
  2193. venv/Lib/site-packages/pip/_vendor/pygments/plugin.py +0 -88
  2194. venv/Lib/site-packages/pip/_vendor/pygments/regexopt.py +0 -91
  2195. venv/Lib/site-packages/pip/_vendor/pygments/scanner.py +0 -104
  2196. venv/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +0 -155
  2197. venv/Lib/site-packages/pip/_vendor/pygments/style.py +0 -197
  2198. venv/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +0 -97
  2199. venv/Lib/site-packages/pip/_vendor/pygments/token.py +0 -213
  2200. venv/Lib/site-packages/pip/_vendor/pygments/unistring.py +0 -153
  2201. venv/Lib/site-packages/pip/_vendor/pygments/util.py +0 -308
  2202. venv/Lib/site-packages/pip/_vendor/pyparsing/__init__.py +0 -331
  2203. venv/Lib/site-packages/pip/_vendor/pyparsing/actions.py +0 -207
  2204. venv/Lib/site-packages/pip/_vendor/pyparsing/common.py +0 -424
  2205. venv/Lib/site-packages/pip/_vendor/pyparsing/core.py +0 -5814
  2206. venv/Lib/site-packages/pip/_vendor/pyparsing/diagram/__init__.py +0 -642
  2207. venv/Lib/site-packages/pip/_vendor/pyparsing/exceptions.py +0 -267
  2208. venv/Lib/site-packages/pip/_vendor/pyparsing/helpers.py +0 -1088
  2209. venv/Lib/site-packages/pip/_vendor/pyparsing/results.py +0 -760
  2210. venv/Lib/site-packages/pip/_vendor/pyparsing/testing.py +0 -331
  2211. venv/Lib/site-packages/pip/_vendor/pyparsing/unicode.py +0 -352
  2212. venv/Lib/site-packages/pip/_vendor/pyparsing/util.py +0 -235
  2213. venv/Lib/site-packages/pip/_vendor/requests/__init__.py +0 -182
  2214. venv/Lib/site-packages/pip/_vendor/requests/__version__.py +0 -14
  2215. venv/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +0 -48
  2216. venv/Lib/site-packages/pip/_vendor/requests/adapters.py +0 -584
  2217. venv/Lib/site-packages/pip/_vendor/requests/api.py +0 -157
  2218. venv/Lib/site-packages/pip/_vendor/requests/auth.py +0 -315
  2219. venv/Lib/site-packages/pip/_vendor/requests/certs.py +0 -24
  2220. venv/Lib/site-packages/pip/_vendor/requests/compat.py +0 -67
  2221. venv/Lib/site-packages/pip/_vendor/requests/cookies.py +0 -561
  2222. venv/Lib/site-packages/pip/_vendor/requests/exceptions.py +0 -141
  2223. venv/Lib/site-packages/pip/_vendor/requests/help.py +0 -131
  2224. venv/Lib/site-packages/pip/_vendor/requests/hooks.py +0 -33
  2225. venv/Lib/site-packages/pip/_vendor/requests/models.py +0 -1034
  2226. venv/Lib/site-packages/pip/_vendor/requests/packages.py +0 -16
  2227. venv/Lib/site-packages/pip/_vendor/requests/sessions.py +0 -831
  2228. venv/Lib/site-packages/pip/_vendor/requests/status_codes.py +0 -128
  2229. venv/Lib/site-packages/pip/_vendor/requests/structures.py +0 -99
  2230. venv/Lib/site-packages/pip/_vendor/requests/utils.py +0 -1086
  2231. venv/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +0 -26
  2232. venv/Lib/site-packages/pip/_vendor/resolvelib/compat/__init__.py +0 -0
  2233. venv/Lib/site-packages/pip/_vendor/resolvelib/compat/collections_abc.py +0 -6
  2234. venv/Lib/site-packages/pip/_vendor/resolvelib/providers.py +0 -133
  2235. venv/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +0 -43
  2236. venv/Lib/site-packages/pip/_vendor/resolvelib/resolvers.py +0 -482
  2237. venv/Lib/site-packages/pip/_vendor/resolvelib/structs.py +0 -165
  2238. venv/Lib/site-packages/pip/_vendor/rich/__init__.py +0 -176
  2239. venv/Lib/site-packages/pip/_vendor/rich/__main__.py +0 -282
  2240. venv/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +0 -451
  2241. venv/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +0 -3610
  2242. venv/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +0 -32
  2243. venv/Lib/site-packages/pip/_vendor/rich/_export_format.py +0 -78
  2244. venv/Lib/site-packages/pip/_vendor/rich/_extension.py +0 -10
  2245. venv/Lib/site-packages/pip/_vendor/rich/_inspect.py +0 -270
  2246. venv/Lib/site-packages/pip/_vendor/rich/_log_render.py +0 -94
  2247. venv/Lib/site-packages/pip/_vendor/rich/_loop.py +0 -43
  2248. venv/Lib/site-packages/pip/_vendor/rich/_palettes.py +0 -309
  2249. venv/Lib/site-packages/pip/_vendor/rich/_pick.py +0 -17
  2250. venv/Lib/site-packages/pip/_vendor/rich/_ratio.py +0 -160
  2251. venv/Lib/site-packages/pip/_vendor/rich/_spinners.py +0 -482
  2252. venv/Lib/site-packages/pip/_vendor/rich/_stack.py +0 -16
  2253. venv/Lib/site-packages/pip/_vendor/rich/_timer.py +0 -19
  2254. venv/Lib/site-packages/pip/_vendor/rich/_win32_console.py +0 -662
  2255. venv/Lib/site-packages/pip/_vendor/rich/_windows.py +0 -72
  2256. venv/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +0 -56
  2257. venv/Lib/site-packages/pip/_vendor/rich/_wrap.py +0 -56
  2258. venv/Lib/site-packages/pip/_vendor/rich/abc.py +0 -33
  2259. venv/Lib/site-packages/pip/_vendor/rich/align.py +0 -311
  2260. venv/Lib/site-packages/pip/_vendor/rich/ansi.py +0 -237
  2261. venv/Lib/site-packages/pip/_vendor/rich/bar.py +0 -94
  2262. venv/Lib/site-packages/pip/_vendor/rich/box.py +0 -517
  2263. venv/Lib/site-packages/pip/_vendor/rich/cells.py +0 -154
  2264. venv/Lib/site-packages/pip/_vendor/rich/color.py +0 -615
  2265. venv/Lib/site-packages/pip/_vendor/rich/color_triplet.py +0 -38
  2266. venv/Lib/site-packages/pip/_vendor/rich/columns.py +0 -187
  2267. venv/Lib/site-packages/pip/_vendor/rich/console.py +0 -2572
  2268. venv/Lib/site-packages/pip/_vendor/rich/constrain.py +0 -37
  2269. venv/Lib/site-packages/pip/_vendor/rich/containers.py +0 -167
  2270. venv/Lib/site-packages/pip/_vendor/rich/control.py +0 -225
  2271. venv/Lib/site-packages/pip/_vendor/rich/default_styles.py +0 -188
  2272. venv/Lib/site-packages/pip/_vendor/rich/diagnose.py +0 -37
  2273. venv/Lib/site-packages/pip/_vendor/rich/emoji.py +0 -96
  2274. venv/Lib/site-packages/pip/_vendor/rich/errors.py +0 -34
  2275. venv/Lib/site-packages/pip/_vendor/rich/file_proxy.py +0 -54
  2276. venv/Lib/site-packages/pip/_vendor/rich/filesize.py +0 -89
  2277. venv/Lib/site-packages/pip/_vendor/rich/highlighter.py +0 -232
  2278. venv/Lib/site-packages/pip/_vendor/rich/json.py +0 -140
  2279. venv/Lib/site-packages/pip/_vendor/rich/jupyter.py +0 -101
  2280. venv/Lib/site-packages/pip/_vendor/rich/layout.py +0 -445
  2281. venv/Lib/site-packages/pip/_vendor/rich/live.py +0 -373
  2282. venv/Lib/site-packages/pip/_vendor/rich/live_render.py +0 -113
  2283. venv/Lib/site-packages/pip/_vendor/rich/logging.py +0 -280
  2284. venv/Lib/site-packages/pip/_vendor/rich/markup.py +0 -246
  2285. venv/Lib/site-packages/pip/_vendor/rich/measure.py +0 -151
  2286. venv/Lib/site-packages/pip/_vendor/rich/padding.py +0 -141
  2287. venv/Lib/site-packages/pip/_vendor/rich/pager.py +0 -34
  2288. venv/Lib/site-packages/pip/_vendor/rich/palette.py +0 -100
  2289. venv/Lib/site-packages/pip/_vendor/rich/panel.py +0 -251
  2290. venv/Lib/site-packages/pip/_vendor/rich/pretty.py +0 -1010
  2291. venv/Lib/site-packages/pip/_vendor/rich/progress.py +0 -1703
  2292. venv/Lib/site-packages/pip/_vendor/rich/progress_bar.py +0 -224
  2293. venv/Lib/site-packages/pip/_vendor/rich/prompt.py +0 -376
  2294. venv/Lib/site-packages/pip/_vendor/rich/protocol.py +0 -42
  2295. venv/Lib/site-packages/pip/_vendor/rich/region.py +0 -10
  2296. venv/Lib/site-packages/pip/_vendor/rich/repr.py +0 -152
  2297. venv/Lib/site-packages/pip/_vendor/rich/rule.py +0 -134
  2298. venv/Lib/site-packages/pip/_vendor/rich/scope.py +0 -86
  2299. venv/Lib/site-packages/pip/_vendor/rich/screen.py +0 -54
  2300. venv/Lib/site-packages/pip/_vendor/rich/segment.py +0 -739
  2301. venv/Lib/site-packages/pip/_vendor/rich/spinner.py +0 -136
  2302. venv/Lib/site-packages/pip/_vendor/rich/status.py +0 -132
  2303. venv/Lib/site-packages/pip/_vendor/rich/style.py +0 -771
  2304. venv/Lib/site-packages/pip/_vendor/rich/styled.py +0 -42
  2305. venv/Lib/site-packages/pip/_vendor/rich/syntax.py +0 -934
  2306. venv/Lib/site-packages/pip/_vendor/rich/table.py +0 -996
  2307. venv/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +0 -153
  2308. venv/Lib/site-packages/pip/_vendor/rich/text.py +0 -1286
  2309. venv/Lib/site-packages/pip/_vendor/rich/theme.py +0 -112
  2310. venv/Lib/site-packages/pip/_vendor/rich/themes.py +0 -5
  2311. venv/Lib/site-packages/pip/_vendor/rich/traceback.py +0 -679
  2312. venv/Lib/site-packages/pip/_vendor/rich/tree.py +0 -251
  2313. venv/Lib/site-packages/pip/_vendor/six.py +0 -998
  2314. venv/Lib/site-packages/pip/_vendor/tenacity/__init__.py +0 -519
  2315. venv/Lib/site-packages/pip/_vendor/tenacity/_asyncio.py +0 -92
  2316. venv/Lib/site-packages/pip/_vendor/tenacity/_utils.py +0 -68
  2317. venv/Lib/site-packages/pip/_vendor/tenacity/after.py +0 -46
  2318. venv/Lib/site-packages/pip/_vendor/tenacity/before.py +0 -41
  2319. venv/Lib/site-packages/pip/_vendor/tenacity/before_sleep.py +0 -58
  2320. venv/Lib/site-packages/pip/_vendor/tenacity/nap.py +0 -43
  2321. venv/Lib/site-packages/pip/_vendor/tenacity/retry.py +0 -240
  2322. venv/Lib/site-packages/pip/_vendor/tenacity/stop.py +0 -96
  2323. venv/Lib/site-packages/pip/_vendor/tenacity/tornadoweb.py +0 -59
  2324. venv/Lib/site-packages/pip/_vendor/tenacity/wait.py +0 -232
  2325. venv/Lib/site-packages/pip/_vendor/tomli/__init__.py +0 -11
  2326. venv/Lib/site-packages/pip/_vendor/tomli/_parser.py +0 -691
  2327. venv/Lib/site-packages/pip/_vendor/tomli/_re.py +0 -107
  2328. venv/Lib/site-packages/pip/_vendor/tomli/_types.py +0 -10
  2329. venv/Lib/site-packages/pip/_vendor/typing_extensions.py +0 -2209
  2330. venv/Lib/site-packages/pip/_vendor/urllib3/__init__.py +0 -102
  2331. venv/Lib/site-packages/pip/_vendor/urllib3/_collections.py +0 -337
  2332. venv/Lib/site-packages/pip/_vendor/urllib3/_version.py +0 -2
  2333. venv/Lib/site-packages/pip/_vendor/urllib3/connection.py +0 -567
  2334. venv/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +0 -1110
  2335. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
  2336. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +0 -36
  2337. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
  2338. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +0 -519
  2339. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +0 -397
  2340. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +0 -314
  2341. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +0 -130
  2342. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +0 -519
  2343. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +0 -921
  2344. venv/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +0 -216
  2345. venv/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +0 -323
  2346. venv/Lib/site-packages/pip/_vendor/urllib3/fields.py +0 -274
  2347. venv/Lib/site-packages/pip/_vendor/urllib3/filepost.py +0 -98
  2348. venv/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
  2349. venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
  2350. venv/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +0 -51
  2351. venv/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +0 -1076
  2352. venv/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +0 -537
  2353. venv/Lib/site-packages/pip/_vendor/urllib3/request.py +0 -170
  2354. venv/Lib/site-packages/pip/_vendor/urllib3/response.py +0 -866
  2355. venv/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +0 -49
  2356. venv/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +0 -149
  2357. venv/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +0 -57
  2358. venv/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +0 -22
  2359. venv/Lib/site-packages/pip/_vendor/urllib3/util/request.py +0 -137
  2360. venv/Lib/site-packages/pip/_vendor/urllib3/util/response.py +0 -107
  2361. venv/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +0 -620
  2362. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +0 -495
  2363. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +0 -159
  2364. venv/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +0 -221
  2365. venv/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +0 -268
  2366. venv/Lib/site-packages/pip/_vendor/urllib3/util/url.py +0 -435
  2367. venv/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +0 -152
  2368. venv/Lib/site-packages/pip/_vendor/webencodings/__init__.py +0 -342
  2369. venv/Lib/site-packages/pip/_vendor/webencodings/labels.py +0 -231
  2370. venv/Lib/site-packages/pip/_vendor/webencodings/mklabels.py +0 -59
  2371. venv/Lib/site-packages/pip/_vendor/webencodings/tests.py +0 -153
  2372. venv/Lib/site-packages/pip/_vendor/webencodings/x_user_defined.py +0 -325
  2373. venv/Lib/site-packages/pkg_resources/__init__.py +0 -3357
  2374. venv/Lib/site-packages/pkg_resources/_vendor/__init__.py +0 -0
  2375. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py +0 -36
  2376. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py +0 -170
  2377. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py +0 -207
  2378. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py +0 -108
  2379. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py +0 -35
  2380. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py +0 -120
  2381. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py +0 -170
  2382. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py +0 -120
  2383. venv/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py +0 -106
  2384. venv/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py +0 -0
  2385. venv/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py +0 -288
  2386. venv/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py +0 -525
  2387. venv/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py +0 -599
  2388. venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py +0 -6
  2389. venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py +0 -4346
  2390. venv/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py +0 -841
  2391. venv/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py +0 -15
  2392. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_elffile.py +0 -108
  2393. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +0 -238
  2394. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +0 -80
  2395. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_parser.py +0 -328
  2396. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py +0 -61
  2397. venv/Lib/site-packages/pkg_resources/_vendor/packaging/_tokenizer.py +0 -188
  2398. venv/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py +0 -245
  2399. venv/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py +0 -95
  2400. venv/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py +0 -1005
  2401. venv/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py +0 -546
  2402. venv/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py +0 -141
  2403. venv/Lib/site-packages/pkg_resources/_vendor/packaging/version.py +0 -563
  2404. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/__init__.py +0 -342
  2405. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/__main__.py +0 -46
  2406. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/android.py +0 -120
  2407. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/api.py +0 -156
  2408. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/macos.py +0 -64
  2409. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/unix.py +0 -181
  2410. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/version.py +0 -4
  2411. venv/Lib/site-packages/pkg_resources/_vendor/platformdirs/windows.py +0 -184
  2412. venv/Lib/site-packages/pkg_resources/_vendor/typing_extensions.py +0 -2209
  2413. venv/Lib/site-packages/pkg_resources/_vendor/zipp.py +0 -329
  2414. venv/Lib/site-packages/pkg_resources/extern/__init__.py +0 -80
  2415. venv/Lib/site-packages/pkginfo/__init__.py +0 -9
  2416. venv/Lib/site-packages/pkginfo/bdist.py +0 -39
  2417. venv/Lib/site-packages/pkginfo/commandline.py +0 -229
  2418. venv/Lib/site-packages/pkginfo/develop.py +0 -46
  2419. venv/Lib/site-packages/pkginfo/distribution.py +0 -162
  2420. venv/Lib/site-packages/pkginfo/index.py +0 -15
  2421. venv/Lib/site-packages/pkginfo/installed.py +0 -62
  2422. venv/Lib/site-packages/pkginfo/sdist.py +0 -75
  2423. venv/Lib/site-packages/pkginfo/tests/__init__.py +0 -37
  2424. venv/Lib/site-packages/pkginfo/tests/test_bdist.py +0 -60
  2425. venv/Lib/site-packages/pkginfo/tests/test_commandline.py +0 -345
  2426. venv/Lib/site-packages/pkginfo/tests/test_develop.py +0 -27
  2427. venv/Lib/site-packages/pkginfo/tests/test_distribution.py +0 -477
  2428. venv/Lib/site-packages/pkginfo/tests/test_index.py +0 -76
  2429. venv/Lib/site-packages/pkginfo/tests/test_installed.py +0 -139
  2430. venv/Lib/site-packages/pkginfo/tests/test_sdist.py +0 -156
  2431. venv/Lib/site-packages/pkginfo/tests/test_utils.py +0 -176
  2432. venv/Lib/site-packages/pkginfo/tests/test_wheel.py +0 -117
  2433. venv/Lib/site-packages/pkginfo/utils.py +0 -62
  2434. venv/Lib/site-packages/pkginfo/wheel.py +0 -55
  2435. venv/Lib/site-packages/pygments/__init__.py +0 -82
  2436. venv/Lib/site-packages/pygments/__main__.py +0 -17
  2437. venv/Lib/site-packages/pygments/cmdline.py +0 -668
  2438. venv/Lib/site-packages/pygments/console.py +0 -70
  2439. venv/Lib/site-packages/pygments/filter.py +0 -71
  2440. venv/Lib/site-packages/pygments/filters/__init__.py +0 -940
  2441. venv/Lib/site-packages/pygments/formatter.py +0 -94
  2442. venv/Lib/site-packages/pygments/formatters/__init__.py +0 -142
  2443. venv/Lib/site-packages/pygments/formatters/_mapping.py +0 -23
  2444. venv/Lib/site-packages/pygments/formatters/bbcode.py +0 -108
  2445. venv/Lib/site-packages/pygments/formatters/groff.py +0 -170
  2446. venv/Lib/site-packages/pygments/formatters/html.py +0 -991
  2447. venv/Lib/site-packages/pygments/formatters/img.py +0 -645
  2448. venv/Lib/site-packages/pygments/formatters/irc.py +0 -154
  2449. venv/Lib/site-packages/pygments/formatters/latex.py +0 -521
  2450. venv/Lib/site-packages/pygments/formatters/other.py +0 -161
  2451. venv/Lib/site-packages/pygments/formatters/pangomarkup.py +0 -83
  2452. venv/Lib/site-packages/pygments/formatters/rtf.py +0 -146
  2453. venv/Lib/site-packages/pygments/formatters/svg.py +0 -188
  2454. venv/Lib/site-packages/pygments/formatters/terminal.py +0 -127
  2455. venv/Lib/site-packages/pygments/formatters/terminal256.py +0 -338
  2456. venv/Lib/site-packages/pygments/lexer.py +0 -883
  2457. venv/Lib/site-packages/pygments/lexers/__init__.py +0 -334
  2458. venv/Lib/site-packages/pygments/lexers/_ada_builtins.py +0 -103
  2459. venv/Lib/site-packages/pygments/lexers/_asy_builtins.py +0 -1644
  2460. venv/Lib/site-packages/pygments/lexers/_cl_builtins.py +0 -231
  2461. venv/Lib/site-packages/pygments/lexers/_cocoa_builtins.py +0 -75
  2462. venv/Lib/site-packages/pygments/lexers/_csound_builtins.py +0 -1780
  2463. venv/Lib/site-packages/pygments/lexers/_css_builtins.py +0 -558
  2464. venv/Lib/site-packages/pygments/lexers/_julia_builtins.py +0 -411
  2465. venv/Lib/site-packages/pygments/lexers/_lasso_builtins.py +0 -5326
  2466. venv/Lib/site-packages/pygments/lexers/_lilypond_builtins.py +0 -4886
  2467. venv/Lib/site-packages/pygments/lexers/_lua_builtins.py +0 -285
  2468. venv/Lib/site-packages/pygments/lexers/_mapping.py +0 -553
  2469. venv/Lib/site-packages/pygments/lexers/_mql_builtins.py +0 -1171
  2470. venv/Lib/site-packages/pygments/lexers/_mysql_builtins.py +0 -1335
  2471. venv/Lib/site-packages/pygments/lexers/_openedge_builtins.py +0 -2600
  2472. venv/Lib/site-packages/pygments/lexers/_php_builtins.py +0 -3325
  2473. venv/Lib/site-packages/pygments/lexers/_postgres_builtins.py +0 -684
  2474. venv/Lib/site-packages/pygments/lexers/_qlik_builtins.py +0 -666
  2475. venv/Lib/site-packages/pygments/lexers/_scheme_builtins.py +0 -1609
  2476. venv/Lib/site-packages/pygments/lexers/_scilab_builtins.py +0 -3093
  2477. venv/Lib/site-packages/pygments/lexers/_sourcemod_builtins.py +0 -1151
  2478. venv/Lib/site-packages/pygments/lexers/_stan_builtins.py +0 -648
  2479. venv/Lib/site-packages/pygments/lexers/_stata_builtins.py +0 -457
  2480. venv/Lib/site-packages/pygments/lexers/_tsql_builtins.py +0 -1003
  2481. venv/Lib/site-packages/pygments/lexers/_usd_builtins.py +0 -112
  2482. venv/Lib/site-packages/pygments/lexers/_vbscript_builtins.py +0 -279
  2483. venv/Lib/site-packages/pygments/lexers/_vim_builtins.py +0 -1938
  2484. venv/Lib/site-packages/pygments/lexers/actionscript.py +0 -245
  2485. venv/Lib/site-packages/pygments/lexers/ada.py +0 -144
  2486. venv/Lib/site-packages/pygments/lexers/agile.py +0 -23
  2487. venv/Lib/site-packages/pygments/lexers/algebra.py +0 -302
  2488. venv/Lib/site-packages/pygments/lexers/ambient.py +0 -76
  2489. venv/Lib/site-packages/pygments/lexers/amdgpu.py +0 -53
  2490. venv/Lib/site-packages/pygments/lexers/ampl.py +0 -88
  2491. venv/Lib/site-packages/pygments/lexers/apdlexer.py +0 -447
  2492. venv/Lib/site-packages/pygments/lexers/apl.py +0 -104
  2493. venv/Lib/site-packages/pygments/lexers/archetype.py +0 -319
  2494. venv/Lib/site-packages/pygments/lexers/arrow.py +0 -117
  2495. venv/Lib/site-packages/pygments/lexers/arturo.py +0 -250
  2496. venv/Lib/site-packages/pygments/lexers/asc.py +0 -55
  2497. venv/Lib/site-packages/pygments/lexers/asm.py +0 -1037
  2498. venv/Lib/site-packages/pygments/lexers/automation.py +0 -381
  2499. venv/Lib/site-packages/pygments/lexers/bare.py +0 -102
  2500. venv/Lib/site-packages/pygments/lexers/basic.py +0 -665
  2501. venv/Lib/site-packages/pygments/lexers/bdd.py +0 -58
  2502. venv/Lib/site-packages/pygments/lexers/berry.py +0 -99
  2503. venv/Lib/site-packages/pygments/lexers/bibtex.py +0 -159
  2504. venv/Lib/site-packages/pygments/lexers/boa.py +0 -97
  2505. venv/Lib/site-packages/pygments/lexers/business.py +0 -626
  2506. venv/Lib/site-packages/pygments/lexers/c_cpp.py +0 -409
  2507. venv/Lib/site-packages/pygments/lexers/c_like.py +0 -666
  2508. venv/Lib/site-packages/pygments/lexers/capnproto.py +0 -75
  2509. venv/Lib/site-packages/pygments/lexers/cddl.py +0 -173
  2510. venv/Lib/site-packages/pygments/lexers/chapel.py +0 -136
  2511. venv/Lib/site-packages/pygments/lexers/clean.py +0 -179
  2512. venv/Lib/site-packages/pygments/lexers/comal.py +0 -80
  2513. venv/Lib/site-packages/pygments/lexers/compiled.py +0 -34
  2514. venv/Lib/site-packages/pygments/lexers/configs.py +0 -1174
  2515. venv/Lib/site-packages/pygments/lexers/console.py +0 -114
  2516. venv/Lib/site-packages/pygments/lexers/cplint.py +0 -44
  2517. venv/Lib/site-packages/pygments/lexers/crystal.py +0 -365
  2518. venv/Lib/site-packages/pygments/lexers/csound.py +0 -468
  2519. venv/Lib/site-packages/pygments/lexers/css.py +0 -602
  2520. venv/Lib/site-packages/pygments/lexers/d.py +0 -258
  2521. venv/Lib/site-packages/pygments/lexers/dalvik.py +0 -127
  2522. venv/Lib/site-packages/pygments/lexers/data.py +0 -767
  2523. venv/Lib/site-packages/pygments/lexers/devicetree.py +0 -109
  2524. venv/Lib/site-packages/pygments/lexers/diff.py +0 -165
  2525. venv/Lib/site-packages/pygments/lexers/dotnet.py +0 -729
  2526. venv/Lib/site-packages/pygments/lexers/dsls.py +0 -981
  2527. venv/Lib/site-packages/pygments/lexers/dylan.py +0 -287
  2528. venv/Lib/site-packages/pygments/lexers/ecl.py +0 -145
  2529. venv/Lib/site-packages/pygments/lexers/eiffel.py +0 -69
  2530. venv/Lib/site-packages/pygments/lexers/elm.py +0 -124
  2531. venv/Lib/site-packages/pygments/lexers/elpi.py +0 -165
  2532. venv/Lib/site-packages/pygments/lexers/email.py +0 -132
  2533. venv/Lib/site-packages/pygments/lexers/erlang.py +0 -528
  2534. venv/Lib/site-packages/pygments/lexers/esoteric.py +0 -301
  2535. venv/Lib/site-packages/pygments/lexers/ezhil.py +0 -77
  2536. venv/Lib/site-packages/pygments/lexers/factor.py +0 -364
  2537. venv/Lib/site-packages/pygments/lexers/fantom.py +0 -251
  2538. venv/Lib/site-packages/pygments/lexers/felix.py +0 -276
  2539. venv/Lib/site-packages/pygments/lexers/fift.py +0 -67
  2540. venv/Lib/site-packages/pygments/lexers/floscript.py +0 -82
  2541. venv/Lib/site-packages/pygments/lexers/forth.py +0 -179
  2542. venv/Lib/site-packages/pygments/lexers/fortran.py +0 -213
  2543. venv/Lib/site-packages/pygments/lexers/foxpro.py +0 -427
  2544. venv/Lib/site-packages/pygments/lexers/freefem.py +0 -894
  2545. venv/Lib/site-packages/pygments/lexers/func.py +0 -108
  2546. venv/Lib/site-packages/pygments/lexers/functional.py +0 -20
  2547. venv/Lib/site-packages/pygments/lexers/futhark.py +0 -106
  2548. venv/Lib/site-packages/pygments/lexers/gcodelexer.py +0 -35
  2549. venv/Lib/site-packages/pygments/lexers/gdscript.py +0 -188
  2550. venv/Lib/site-packages/pygments/lexers/go.py +0 -98
  2551. venv/Lib/site-packages/pygments/lexers/grammar_notation.py +0 -265
  2552. venv/Lib/site-packages/pygments/lexers/graph.py +0 -105
  2553. venv/Lib/site-packages/pygments/lexers/graphics.py +0 -797
  2554. venv/Lib/site-packages/pygments/lexers/graphviz.py +0 -59
  2555. venv/Lib/site-packages/pygments/lexers/gsql.py +0 -104
  2556. venv/Lib/site-packages/pygments/lexers/haskell.py +0 -871
  2557. venv/Lib/site-packages/pygments/lexers/haxe.py +0 -937
  2558. venv/Lib/site-packages/pygments/lexers/hdl.py +0 -465
  2559. venv/Lib/site-packages/pygments/lexers/hexdump.py +0 -102
  2560. venv/Lib/site-packages/pygments/lexers/html.py +0 -605
  2561. venv/Lib/site-packages/pygments/lexers/idl.py +0 -285
  2562. venv/Lib/site-packages/pygments/lexers/igor.py +0 -420
  2563. venv/Lib/site-packages/pygments/lexers/inferno.py +0 -96
  2564. venv/Lib/site-packages/pygments/lexers/installers.py +0 -327
  2565. venv/Lib/site-packages/pygments/lexers/int_fiction.py +0 -1382
  2566. venv/Lib/site-packages/pygments/lexers/iolang.py +0 -62
  2567. venv/Lib/site-packages/pygments/lexers/j.py +0 -152
  2568. venv/Lib/site-packages/pygments/lexers/javascript.py +0 -1588
  2569. venv/Lib/site-packages/pygments/lexers/jmespath.py +0 -68
  2570. venv/Lib/site-packages/pygments/lexers/jslt.py +0 -95
  2571. venv/Lib/site-packages/pygments/lexers/jsonnet.py +0 -168
  2572. venv/Lib/site-packages/pygments/lexers/julia.py +0 -294
  2573. venv/Lib/site-packages/pygments/lexers/jvm.py +0 -1820
  2574. venv/Lib/site-packages/pygments/lexers/kuin.py +0 -333
  2575. venv/Lib/site-packages/pygments/lexers/lilypond.py +0 -226
  2576. venv/Lib/site-packages/pygments/lexers/lisp.py +0 -2838
  2577. venv/Lib/site-packages/pygments/lexers/macaulay2.py +0 -1739
  2578. venv/Lib/site-packages/pygments/lexers/make.py +0 -209
  2579. venv/Lib/site-packages/pygments/lexers/markup.py +0 -765
  2580. venv/Lib/site-packages/pygments/lexers/math.py +0 -20
  2581. venv/Lib/site-packages/pygments/lexers/matlab.py +0 -3308
  2582. venv/Lib/site-packages/pygments/lexers/maxima.py +0 -85
  2583. venv/Lib/site-packages/pygments/lexers/meson.py +0 -140
  2584. venv/Lib/site-packages/pygments/lexers/mime.py +0 -210
  2585. venv/Lib/site-packages/pygments/lexers/minecraft.py +0 -394
  2586. venv/Lib/site-packages/pygments/lexers/mips.py +0 -128
  2587. venv/Lib/site-packages/pygments/lexers/ml.py +0 -960
  2588. venv/Lib/site-packages/pygments/lexers/modeling.py +0 -369
  2589. venv/Lib/site-packages/pygments/lexers/modula2.py +0 -1580
  2590. venv/Lib/site-packages/pygments/lexers/monte.py +0 -204
  2591. venv/Lib/site-packages/pygments/lexers/mosel.py +0 -447
  2592. venv/Lib/site-packages/pygments/lexers/ncl.py +0 -893
  2593. venv/Lib/site-packages/pygments/lexers/nimrod.py +0 -200
  2594. venv/Lib/site-packages/pygments/lexers/nit.py +0 -64
  2595. venv/Lib/site-packages/pygments/lexers/nix.py +0 -135
  2596. venv/Lib/site-packages/pygments/lexers/oberon.py +0 -120
  2597. venv/Lib/site-packages/pygments/lexers/objective.py +0 -505
  2598. venv/Lib/site-packages/pygments/lexers/ooc.py +0 -85
  2599. venv/Lib/site-packages/pygments/lexers/other.py +0 -40
  2600. venv/Lib/site-packages/pygments/lexers/parasail.py +0 -79
  2601. venv/Lib/site-packages/pygments/lexers/parsers.py +0 -801
  2602. venv/Lib/site-packages/pygments/lexers/pascal.py +0 -641
  2603. venv/Lib/site-packages/pygments/lexers/pawn.py +0 -202
  2604. venv/Lib/site-packages/pygments/lexers/perl.py +0 -733
  2605. venv/Lib/site-packages/pygments/lexers/phix.py +0 -364
  2606. venv/Lib/site-packages/pygments/lexers/php.py +0 -319
  2607. venv/Lib/site-packages/pygments/lexers/pointless.py +0 -71
  2608. venv/Lib/site-packages/pygments/lexers/pony.py +0 -93
  2609. venv/Lib/site-packages/pygments/lexers/praat.py +0 -304
  2610. venv/Lib/site-packages/pygments/lexers/procfile.py +0 -42
  2611. venv/Lib/site-packages/pygments/lexers/prolog.py +0 -304
  2612. venv/Lib/site-packages/pygments/lexers/promql.py +0 -175
  2613. venv/Lib/site-packages/pygments/lexers/python.py +0 -1204
  2614. venv/Lib/site-packages/pygments/lexers/q.py +0 -188
  2615. venv/Lib/site-packages/pygments/lexers/qlik.py +0 -117
  2616. venv/Lib/site-packages/pygments/lexers/qvt.py +0 -151
  2617. venv/Lib/site-packages/pygments/lexers/r.py +0 -190
  2618. venv/Lib/site-packages/pygments/lexers/rdf.py +0 -462
  2619. venv/Lib/site-packages/pygments/lexers/rebol.py +0 -430
  2620. venv/Lib/site-packages/pygments/lexers/resource.py +0 -84
  2621. venv/Lib/site-packages/pygments/lexers/ride.py +0 -139
  2622. venv/Lib/site-packages/pygments/lexers/rita.py +0 -43
  2623. venv/Lib/site-packages/pygments/lexers/rnc.py +0 -67
  2624. venv/Lib/site-packages/pygments/lexers/roboconf.py +0 -81
  2625. venv/Lib/site-packages/pygments/lexers/robotframework.py +0 -552
  2626. venv/Lib/site-packages/pygments/lexers/ruby.py +0 -523
  2627. venv/Lib/site-packages/pygments/lexers/rust.py +0 -223
  2628. venv/Lib/site-packages/pygments/lexers/sas.py +0 -227
  2629. venv/Lib/site-packages/pygments/lexers/savi.py +0 -170
  2630. venv/Lib/site-packages/pygments/lexers/scdoc.py +0 -79
  2631. venv/Lib/site-packages/pygments/lexers/scripting.py +0 -1286
  2632. venv/Lib/site-packages/pygments/lexers/sgf.py +0 -60
  2633. venv/Lib/site-packages/pygments/lexers/shell.py +0 -918
  2634. venv/Lib/site-packages/pygments/lexers/sieve.py +0 -78
  2635. venv/Lib/site-packages/pygments/lexers/slash.py +0 -184
  2636. venv/Lib/site-packages/pygments/lexers/smalltalk.py +0 -196
  2637. venv/Lib/site-packages/pygments/lexers/smithy.py +0 -78
  2638. venv/Lib/site-packages/pygments/lexers/smv.py +0 -78
  2639. venv/Lib/site-packages/pygments/lexers/snobol.py +0 -82
  2640. venv/Lib/site-packages/pygments/lexers/solidity.py +0 -87
  2641. venv/Lib/site-packages/pygments/lexers/sophia.py +0 -103
  2642. venv/Lib/site-packages/pygments/lexers/special.py +0 -116
  2643. venv/Lib/site-packages/pygments/lexers/spice.py +0 -71
  2644. venv/Lib/site-packages/pygments/lexers/sql.py +0 -838
  2645. venv/Lib/site-packages/pygments/lexers/srcinfo.py +0 -62
  2646. venv/Lib/site-packages/pygments/lexers/stata.py +0 -171
  2647. venv/Lib/site-packages/pygments/lexers/supercollider.py +0 -95
  2648. venv/Lib/site-packages/pygments/lexers/tal.py +0 -74
  2649. venv/Lib/site-packages/pygments/lexers/tcl.py +0 -149
  2650. venv/Lib/site-packages/pygments/lexers/teal.py +0 -89
  2651. venv/Lib/site-packages/pygments/lexers/templates.py +0 -2300
  2652. venv/Lib/site-packages/pygments/lexers/teraterm.py +0 -326
  2653. venv/Lib/site-packages/pygments/lexers/testing.py +0 -210
  2654. venv/Lib/site-packages/pygments/lexers/text.py +0 -26
  2655. venv/Lib/site-packages/pygments/lexers/textedit.py +0 -202
  2656. venv/Lib/site-packages/pygments/lexers/textfmts.py +0 -431
  2657. venv/Lib/site-packages/pygments/lexers/theorem.py +0 -484
  2658. venv/Lib/site-packages/pygments/lexers/thingsdb.py +0 -116
  2659. venv/Lib/site-packages/pygments/lexers/tlb.py +0 -57
  2660. venv/Lib/site-packages/pygments/lexers/tnt.py +0 -271
  2661. venv/Lib/site-packages/pygments/lexers/trafficscript.py +0 -51
  2662. venv/Lib/site-packages/pygments/lexers/typoscript.py +0 -217
  2663. venv/Lib/site-packages/pygments/lexers/ul4.py +0 -267
  2664. venv/Lib/site-packages/pygments/lexers/unicon.py +0 -411
  2665. venv/Lib/site-packages/pygments/lexers/urbi.py +0 -145
  2666. venv/Lib/site-packages/pygments/lexers/usd.py +0 -90
  2667. venv/Lib/site-packages/pygments/lexers/varnish.py +0 -189
  2668. venv/Lib/site-packages/pygments/lexers/verification.py +0 -114
  2669. venv/Lib/site-packages/pygments/lexers/web.py +0 -23
  2670. venv/Lib/site-packages/pygments/lexers/webassembly.py +0 -120
  2671. venv/Lib/site-packages/pygments/lexers/webidl.py +0 -299
  2672. venv/Lib/site-packages/pygments/lexers/webmisc.py +0 -1010
  2673. venv/Lib/site-packages/pygments/lexers/whiley.py +0 -116
  2674. venv/Lib/site-packages/pygments/lexers/wowtoc.py +0 -120
  2675. venv/Lib/site-packages/pygments/lexers/wren.py +0 -99
  2676. venv/Lib/site-packages/pygments/lexers/x10.py +0 -67
  2677. venv/Lib/site-packages/pygments/lexers/xorg.py +0 -37
  2678. venv/Lib/site-packages/pygments/lexers/yang.py +0 -104
  2679. venv/Lib/site-packages/pygments/lexers/zig.py +0 -124
  2680. venv/Lib/site-packages/pygments/modeline.py +0 -43
  2681. venv/Lib/site-packages/pygments/plugin.py +0 -88
  2682. venv/Lib/site-packages/pygments/regexopt.py +0 -91
  2683. venv/Lib/site-packages/pygments/scanner.py +0 -104
  2684. venv/Lib/site-packages/pygments/sphinxext.py +0 -217
  2685. venv/Lib/site-packages/pygments/style.py +0 -197
  2686. venv/Lib/site-packages/pygments/styles/__init__.py +0 -97
  2687. venv/Lib/site-packages/pygments/styles/abap.py +0 -28
  2688. venv/Lib/site-packages/pygments/styles/algol.py +0 -61
  2689. venv/Lib/site-packages/pygments/styles/algol_nu.py +0 -61
  2690. venv/Lib/site-packages/pygments/styles/arduino.py +0 -96
  2691. venv/Lib/site-packages/pygments/styles/autumn.py +0 -62
  2692. venv/Lib/site-packages/pygments/styles/borland.py +0 -48
  2693. venv/Lib/site-packages/pygments/styles/bw.py +0 -47
  2694. venv/Lib/site-packages/pygments/styles/colorful.py +0 -78
  2695. venv/Lib/site-packages/pygments/styles/default.py +0 -71
  2696. venv/Lib/site-packages/pygments/styles/dracula.py +0 -102
  2697. venv/Lib/site-packages/pygments/styles/emacs.py +0 -70
  2698. venv/Lib/site-packages/pygments/styles/friendly.py +0 -71
  2699. venv/Lib/site-packages/pygments/styles/friendly_grayscale.py +0 -75
  2700. venv/Lib/site-packages/pygments/styles/fruity.py +0 -41
  2701. venv/Lib/site-packages/pygments/styles/gh_dark.py +0 -107
  2702. venv/Lib/site-packages/pygments/styles/gruvbox.py +0 -109
  2703. venv/Lib/site-packages/pygments/styles/igor.py +0 -27
  2704. venv/Lib/site-packages/pygments/styles/inkpot.py +0 -67
  2705. venv/Lib/site-packages/pygments/styles/lilypond.py +0 -56
  2706. venv/Lib/site-packages/pygments/styles/lovelace.py +0 -94
  2707. venv/Lib/site-packages/pygments/styles/manni.py +0 -74
  2708. venv/Lib/site-packages/pygments/styles/material.py +0 -117
  2709. venv/Lib/site-packages/pygments/styles/monokai.py +0 -106
  2710. venv/Lib/site-packages/pygments/styles/murphy.py +0 -77
  2711. venv/Lib/site-packages/pygments/styles/native.py +0 -65
  2712. venv/Lib/site-packages/pygments/styles/nord.py +0 -150
  2713. venv/Lib/site-packages/pygments/styles/onedark.py +0 -59
  2714. venv/Lib/site-packages/pygments/styles/paraiso_dark.py +0 -119
  2715. venv/Lib/site-packages/pygments/styles/paraiso_light.py +0 -119
  2716. venv/Lib/site-packages/pygments/styles/pastie.py +0 -72
  2717. venv/Lib/site-packages/pygments/styles/perldoc.py +0 -67
  2718. venv/Lib/site-packages/pygments/styles/rainbow_dash.py +0 -88
  2719. venv/Lib/site-packages/pygments/styles/rrt.py +0 -33
  2720. venv/Lib/site-packages/pygments/styles/sas.py +0 -41
  2721. venv/Lib/site-packages/pygments/styles/solarized.py +0 -136
  2722. venv/Lib/site-packages/pygments/styles/staroffice.py +0 -26
  2723. venv/Lib/site-packages/pygments/styles/stata_dark.py +0 -38
  2724. venv/Lib/site-packages/pygments/styles/stata_light.py +0 -37
  2725. venv/Lib/site-packages/pygments/styles/tango.py +0 -139
  2726. venv/Lib/site-packages/pygments/styles/trac.py +0 -60
  2727. venv/Lib/site-packages/pygments/styles/vim.py +0 -61
  2728. venv/Lib/site-packages/pygments/styles/vs.py +0 -36
  2729. venv/Lib/site-packages/pygments/styles/xcode.py +0 -48
  2730. venv/Lib/site-packages/pygments/styles/zenburn.py +0 -78
  2731. venv/Lib/site-packages/pygments/token.py +0 -213
  2732. venv/Lib/site-packages/pygments/unistring.py +0 -153
  2733. venv/Lib/site-packages/pygments/util.py +0 -308
  2734. venv/Lib/site-packages/pyproject_hooks/__init__.py +0 -23
  2735. venv/Lib/site-packages/pyproject_hooks/_compat.py +0 -8
  2736. venv/Lib/site-packages/pyproject_hooks/_impl.py +0 -330
  2737. venv/Lib/site-packages/pyproject_hooks/_in_process/__init__.py +0 -18
  2738. venv/Lib/site-packages/pyproject_hooks/_in_process/_in_process.py +0 -353
  2739. venv/Lib/site-packages/readme_renderer/__about__.py +0 -38
  2740. venv/Lib/site-packages/readme_renderer/__init__.py +0 -13
  2741. venv/Lib/site-packages/readme_renderer/__main__.py +0 -19
  2742. venv/Lib/site-packages/readme_renderer/clean.py +0 -132
  2743. venv/Lib/site-packages/readme_renderer/markdown.py +0 -123
  2744. venv/Lib/site-packages/readme_renderer/rst.py +0 -135
  2745. venv/Lib/site-packages/readme_renderer/txt.py +0 -24
  2746. venv/Lib/site-packages/requests/__init__.py +0 -180
  2747. venv/Lib/site-packages/requests/__version__.py +0 -14
  2748. venv/Lib/site-packages/requests/_internal_utils.py +0 -48
  2749. venv/Lib/site-packages/requests/adapters.py +0 -584
  2750. venv/Lib/site-packages/requests/api.py +0 -157
  2751. venv/Lib/site-packages/requests/auth.py +0 -315
  2752. venv/Lib/site-packages/requests/certs.py +0 -17
  2753. venv/Lib/site-packages/requests/compat.py +0 -79
  2754. venv/Lib/site-packages/requests/cookies.py +0 -561
  2755. venv/Lib/site-packages/requests/exceptions.py +0 -141
  2756. venv/Lib/site-packages/requests/help.py +0 -134
  2757. venv/Lib/site-packages/requests/hooks.py +0 -33
  2758. venv/Lib/site-packages/requests/models.py +0 -1034
  2759. venv/Lib/site-packages/requests/packages.py +0 -28
  2760. venv/Lib/site-packages/requests/sessions.py +0 -831
  2761. venv/Lib/site-packages/requests/status_codes.py +0 -128
  2762. venv/Lib/site-packages/requests/structures.py +0 -99
  2763. venv/Lib/site-packages/requests/utils.py +0 -1086
  2764. venv/Lib/site-packages/requests_toolbelt/__init__.py +0 -34
  2765. venv/Lib/site-packages/requests_toolbelt/_compat.py +0 -311
  2766. venv/Lib/site-packages/requests_toolbelt/adapters/__init__.py +0 -15
  2767. venv/Lib/site-packages/requests_toolbelt/adapters/appengine.py +0 -206
  2768. venv/Lib/site-packages/requests_toolbelt/adapters/fingerprint.py +0 -48
  2769. venv/Lib/site-packages/requests_toolbelt/adapters/host_header_ssl.py +0 -43
  2770. venv/Lib/site-packages/requests_toolbelt/adapters/socket_options.py +0 -129
  2771. venv/Lib/site-packages/requests_toolbelt/adapters/source.py +0 -67
  2772. venv/Lib/site-packages/requests_toolbelt/adapters/ssl.py +0 -66
  2773. venv/Lib/site-packages/requests_toolbelt/adapters/x509.py +0 -196
  2774. venv/Lib/site-packages/requests_toolbelt/auth/__init__.py +0 -0
  2775. venv/Lib/site-packages/requests_toolbelt/auth/_digest_auth_compat.py +0 -29
  2776. venv/Lib/site-packages/requests_toolbelt/auth/guess.py +0 -146
  2777. venv/Lib/site-packages/requests_toolbelt/auth/handler.py +0 -142
  2778. venv/Lib/site-packages/requests_toolbelt/auth/http_proxy_digest.py +0 -103
  2779. venv/Lib/site-packages/requests_toolbelt/cookies/__init__.py +0 -0
  2780. venv/Lib/site-packages/requests_toolbelt/cookies/forgetful.py +0 -7
  2781. venv/Lib/site-packages/requests_toolbelt/downloadutils/__init__.py +0 -0
  2782. venv/Lib/site-packages/requests_toolbelt/downloadutils/stream.py +0 -176
  2783. venv/Lib/site-packages/requests_toolbelt/downloadutils/tee.py +0 -123
  2784. venv/Lib/site-packages/requests_toolbelt/exceptions.py +0 -37
  2785. venv/Lib/site-packages/requests_toolbelt/multipart/__init__.py +0 -31
  2786. venv/Lib/site-packages/requests_toolbelt/multipart/decoder.py +0 -156
  2787. venv/Lib/site-packages/requests_toolbelt/multipart/encoder.py +0 -655
  2788. venv/Lib/site-packages/requests_toolbelt/sessions.py +0 -89
  2789. venv/Lib/site-packages/requests_toolbelt/streaming_iterator.py +0 -116
  2790. venv/Lib/site-packages/requests_toolbelt/threaded/__init__.py +0 -97
  2791. venv/Lib/site-packages/requests_toolbelt/threaded/pool.py +0 -211
  2792. venv/Lib/site-packages/requests_toolbelt/threaded/thread.py +0 -53
  2793. venv/Lib/site-packages/requests_toolbelt/utils/__init__.py +0 -0
  2794. venv/Lib/site-packages/requests_toolbelt/utils/deprecated.py +0 -91
  2795. venv/Lib/site-packages/requests_toolbelt/utils/dump.py +0 -198
  2796. venv/Lib/site-packages/requests_toolbelt/utils/formdata.py +0 -108
  2797. venv/Lib/site-packages/requests_toolbelt/utils/user_agent.py +0 -143
  2798. venv/Lib/site-packages/rfc3986/__init__.py +0 -53
  2799. venv/Lib/site-packages/rfc3986/_mixin.py +0 -373
  2800. venv/Lib/site-packages/rfc3986/abnf_regexp.py +0 -275
  2801. venv/Lib/site-packages/rfc3986/api.py +0 -104
  2802. venv/Lib/site-packages/rfc3986/builder.py +0 -388
  2803. venv/Lib/site-packages/rfc3986/compat.py +0 -59
  2804. venv/Lib/site-packages/rfc3986/exceptions.py +0 -120
  2805. venv/Lib/site-packages/rfc3986/iri.py +0 -161
  2806. venv/Lib/site-packages/rfc3986/misc.py +0 -131
  2807. venv/Lib/site-packages/rfc3986/normalizers.py +0 -171
  2808. venv/Lib/site-packages/rfc3986/parseresult.py +0 -474
  2809. venv/Lib/site-packages/rfc3986/uri.py +0 -160
  2810. venv/Lib/site-packages/rfc3986/validators.py +0 -440
  2811. venv/Lib/site-packages/rich/__init__.py +0 -176
  2812. venv/Lib/site-packages/rich/__main__.py +0 -282
  2813. venv/Lib/site-packages/rich/_cell_widths.py +0 -451
  2814. venv/Lib/site-packages/rich/_emoji_codes.py +0 -3610
  2815. venv/Lib/site-packages/rich/_emoji_replace.py +0 -32
  2816. venv/Lib/site-packages/rich/_export_format.py +0 -78
  2817. venv/Lib/site-packages/rich/_extension.py +0 -10
  2818. venv/Lib/site-packages/rich/_inspect.py +0 -270
  2819. venv/Lib/site-packages/rich/_log_render.py +0 -94
  2820. venv/Lib/site-packages/rich/_loop.py +0 -43
  2821. venv/Lib/site-packages/rich/_palettes.py +0 -309
  2822. venv/Lib/site-packages/rich/_pick.py +0 -17
  2823. venv/Lib/site-packages/rich/_ratio.py +0 -160
  2824. venv/Lib/site-packages/rich/_spinners.py +0 -482
  2825. venv/Lib/site-packages/rich/_stack.py +0 -16
  2826. venv/Lib/site-packages/rich/_timer.py +0 -19
  2827. venv/Lib/site-packages/rich/_win32_console.py +0 -662
  2828. venv/Lib/site-packages/rich/_windows.py +0 -72
  2829. venv/Lib/site-packages/rich/_windows_renderer.py +0 -56
  2830. venv/Lib/site-packages/rich/_wrap.py +0 -56
  2831. venv/Lib/site-packages/rich/abc.py +0 -33
  2832. venv/Lib/site-packages/rich/align.py +0 -311
  2833. venv/Lib/site-packages/rich/ansi.py +0 -237
  2834. venv/Lib/site-packages/rich/bar.py +0 -94
  2835. venv/Lib/site-packages/rich/box.py +0 -517
  2836. venv/Lib/site-packages/rich/cells.py +0 -154
  2837. venv/Lib/site-packages/rich/color.py +0 -615
  2838. venv/Lib/site-packages/rich/color_triplet.py +0 -38
  2839. venv/Lib/site-packages/rich/columns.py +0 -187
  2840. venv/Lib/site-packages/rich/console.py +0 -2572
  2841. venv/Lib/site-packages/rich/constrain.py +0 -37
  2842. venv/Lib/site-packages/rich/containers.py +0 -167
  2843. venv/Lib/site-packages/rich/control.py +0 -225
  2844. venv/Lib/site-packages/rich/default_styles.py +0 -188
  2845. venv/Lib/site-packages/rich/diagnose.py +0 -37
  2846. venv/Lib/site-packages/rich/emoji.py +0 -96
  2847. venv/Lib/site-packages/rich/errors.py +0 -34
  2848. venv/Lib/site-packages/rich/file_proxy.py +0 -54
  2849. venv/Lib/site-packages/rich/filesize.py +0 -89
  2850. venv/Lib/site-packages/rich/highlighter.py +0 -232
  2851. venv/Lib/site-packages/rich/json.py +0 -140
  2852. venv/Lib/site-packages/rich/jupyter.py +0 -101
  2853. venv/Lib/site-packages/rich/layout.py +0 -445
  2854. venv/Lib/site-packages/rich/live.py +0 -373
  2855. venv/Lib/site-packages/rich/live_render.py +0 -113
  2856. venv/Lib/site-packages/rich/logging.py +0 -280
  2857. venv/Lib/site-packages/rich/markdown.py +0 -625
  2858. venv/Lib/site-packages/rich/markup.py +0 -246
  2859. venv/Lib/site-packages/rich/measure.py +0 -151
  2860. venv/Lib/site-packages/rich/padding.py +0 -141
  2861. venv/Lib/site-packages/rich/pager.py +0 -34
  2862. venv/Lib/site-packages/rich/palette.py +0 -100
  2863. venv/Lib/site-packages/rich/panel.py +0 -251
  2864. venv/Lib/site-packages/rich/pretty.py +0 -1010
  2865. venv/Lib/site-packages/rich/progress.py +0 -1703
  2866. venv/Lib/site-packages/rich/progress_bar.py +0 -224
  2867. venv/Lib/site-packages/rich/prompt.py +0 -376
  2868. venv/Lib/site-packages/rich/protocol.py +0 -42
  2869. venv/Lib/site-packages/rich/region.py +0 -10
  2870. venv/Lib/site-packages/rich/repr.py +0 -152
  2871. venv/Lib/site-packages/rich/rule.py +0 -134
  2872. venv/Lib/site-packages/rich/scope.py +0 -86
  2873. venv/Lib/site-packages/rich/screen.py +0 -54
  2874. venv/Lib/site-packages/rich/segment.py +0 -739
  2875. venv/Lib/site-packages/rich/spinner.py +0 -136
  2876. venv/Lib/site-packages/rich/status.py +0 -132
  2877. venv/Lib/site-packages/rich/style.py +0 -771
  2878. venv/Lib/site-packages/rich/styled.py +0 -42
  2879. venv/Lib/site-packages/rich/syntax.py +0 -934
  2880. venv/Lib/site-packages/rich/table.py +0 -996
  2881. venv/Lib/site-packages/rich/terminal_theme.py +0 -153
  2882. venv/Lib/site-packages/rich/text.py +0 -1286
  2883. venv/Lib/site-packages/rich/theme.py +0 -112
  2884. venv/Lib/site-packages/rich/themes.py +0 -5
  2885. venv/Lib/site-packages/rich/traceback.py +0 -679
  2886. venv/Lib/site-packages/rich/tree.py +0 -251
  2887. venv/Lib/site-packages/setuptools/__init__.py +0 -268
  2888. venv/Lib/site-packages/setuptools/_deprecation_warning.py +0 -7
  2889. venv/Lib/site-packages/setuptools/_distutils/__init__.py +0 -14
  2890. venv/Lib/site-packages/setuptools/_distutils/_collections.py +0 -194
  2891. venv/Lib/site-packages/setuptools/_distutils/_functools.py +0 -20
  2892. venv/Lib/site-packages/setuptools/_distutils/_log.py +0 -4
  2893. venv/Lib/site-packages/setuptools/_distutils/_macos_compat.py +0 -12
  2894. venv/Lib/site-packages/setuptools/_distutils/_msvccompiler.py +0 -568
  2895. venv/Lib/site-packages/setuptools/_distutils/archive_util.py +0 -280
  2896. venv/Lib/site-packages/setuptools/_distutils/bcppcompiler.py +0 -401
  2897. venv/Lib/site-packages/setuptools/_distutils/ccompiler.py +0 -1254
  2898. venv/Lib/site-packages/setuptools/_distutils/cmd.py +0 -435
  2899. venv/Lib/site-packages/setuptools/_distutils/command/__init__.py +0 -25
  2900. venv/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py +0 -55
  2901. venv/Lib/site-packages/setuptools/_distutils/command/bdist.py +0 -156
  2902. venv/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py +0 -143
  2903. venv/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py +0 -614
  2904. venv/Lib/site-packages/setuptools/_distutils/command/build.py +0 -152
  2905. venv/Lib/site-packages/setuptools/_distutils/command/build_clib.py +0 -207
  2906. venv/Lib/site-packages/setuptools/_distutils/command/build_ext.py +0 -788
  2907. venv/Lib/site-packages/setuptools/_distutils/command/build_py.py +0 -406
  2908. venv/Lib/site-packages/setuptools/_distutils/command/build_scripts.py +0 -172
  2909. venv/Lib/site-packages/setuptools/_distutils/command/check.py +0 -151
  2910. venv/Lib/site-packages/setuptools/_distutils/command/clean.py +0 -75
  2911. venv/Lib/site-packages/setuptools/_distutils/command/config.py +0 -376
  2912. venv/Lib/site-packages/setuptools/_distutils/command/install.py +0 -813
  2913. venv/Lib/site-packages/setuptools/_distutils/command/install_data.py +0 -83
  2914. venv/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py +0 -92
  2915. venv/Lib/site-packages/setuptools/_distutils/command/install_headers.py +0 -44
  2916. venv/Lib/site-packages/setuptools/_distutils/command/install_lib.py +0 -237
  2917. venv/Lib/site-packages/setuptools/_distutils/command/install_scripts.py +0 -60
  2918. venv/Lib/site-packages/setuptools/_distutils/command/py37compat.py +0 -31
  2919. venv/Lib/site-packages/setuptools/_distutils/command/register.py +0 -320
  2920. venv/Lib/site-packages/setuptools/_distutils/command/sdist.py +0 -530
  2921. venv/Lib/site-packages/setuptools/_distutils/command/upload.py +0 -206
  2922. venv/Lib/site-packages/setuptools/_distutils/config.py +0 -139
  2923. venv/Lib/site-packages/setuptools/_distutils/core.py +0 -291
  2924. venv/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py +0 -356
  2925. venv/Lib/site-packages/setuptools/_distutils/debug.py +0 -5
  2926. venv/Lib/site-packages/setuptools/_distutils/dep_util.py +0 -96
  2927. venv/Lib/site-packages/setuptools/_distutils/dir_util.py +0 -243
  2928. venv/Lib/site-packages/setuptools/_distutils/dist.py +0 -1287
  2929. venv/Lib/site-packages/setuptools/_distutils/errors.py +0 -127
  2930. venv/Lib/site-packages/setuptools/_distutils/extension.py +0 -248
  2931. venv/Lib/site-packages/setuptools/_distutils/fancy_getopt.py +0 -470
  2932. venv/Lib/site-packages/setuptools/_distutils/file_util.py +0 -248
  2933. venv/Lib/site-packages/setuptools/_distutils/filelist.py +0 -371
  2934. venv/Lib/site-packages/setuptools/_distutils/log.py +0 -57
  2935. venv/Lib/site-packages/setuptools/_distutils/msvc9compiler.py +0 -829
  2936. venv/Lib/site-packages/setuptools/_distutils/msvccompiler.py +0 -692
  2937. venv/Lib/site-packages/setuptools/_distutils/py38compat.py +0 -8
  2938. venv/Lib/site-packages/setuptools/_distutils/py39compat.py +0 -22
  2939. venv/Lib/site-packages/setuptools/_distutils/spawn.py +0 -109
  2940. venv/Lib/site-packages/setuptools/_distutils/sysconfig.py +0 -559
  2941. venv/Lib/site-packages/setuptools/_distutils/text_file.py +0 -286
  2942. venv/Lib/site-packages/setuptools/_distutils/unixccompiler.py +0 -400
  2943. venv/Lib/site-packages/setuptools/_distutils/util.py +0 -513
  2944. venv/Lib/site-packages/setuptools/_distutils/version.py +0 -357
  2945. venv/Lib/site-packages/setuptools/_distutils/versionpredicate.py +0 -175
  2946. venv/Lib/site-packages/setuptools/_entry_points.py +0 -94
  2947. venv/Lib/site-packages/setuptools/_imp.py +0 -82
  2948. venv/Lib/site-packages/setuptools/_importlib.py +0 -47
  2949. venv/Lib/site-packages/setuptools/_itertools.py +0 -23
  2950. venv/Lib/site-packages/setuptools/_normalization.py +0 -117
  2951. venv/Lib/site-packages/setuptools/_path.py +0 -37
  2952. venv/Lib/site-packages/setuptools/_reqs.py +0 -33
  2953. venv/Lib/site-packages/setuptools/_vendor/__init__.py +0 -0
  2954. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +0 -904
  2955. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +0 -90
  2956. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +0 -30
  2957. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +0 -72
  2958. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +0 -104
  2959. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +0 -73
  2960. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +0 -49
  2961. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_py39compat.py +0 -35
  2962. venv/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py +0 -99
  2963. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py +0 -36
  2964. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py +0 -170
  2965. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py +0 -207
  2966. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py +0 -108
  2967. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py +0 -35
  2968. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py +0 -120
  2969. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py +0 -170
  2970. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py +0 -120
  2971. venv/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py +0 -106
  2972. venv/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py +0 -0
  2973. venv/Lib/site-packages/setuptools/_vendor/jaraco/context.py +0 -288
  2974. venv/Lib/site-packages/setuptools/_vendor/jaraco/functools.py +0 -525
  2975. venv/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py +0 -599
  2976. venv/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py +0 -4
  2977. venv/Lib/site-packages/setuptools/_vendor/more_itertools/more.py +0 -3824
  2978. venv/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py +0 -620
  2979. venv/Lib/site-packages/setuptools/_vendor/ordered_set.py +0 -488
  2980. venv/Lib/site-packages/setuptools/_vendor/packaging/__init__.py +0 -15
  2981. venv/Lib/site-packages/setuptools/_vendor/packaging/_elffile.py +0 -108
  2982. venv/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py +0 -238
  2983. venv/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py +0 -80
  2984. venv/Lib/site-packages/setuptools/_vendor/packaging/_parser.py +0 -328
  2985. venv/Lib/site-packages/setuptools/_vendor/packaging/_structures.py +0 -61
  2986. venv/Lib/site-packages/setuptools/_vendor/packaging/_tokenizer.py +0 -188
  2987. venv/Lib/site-packages/setuptools/_vendor/packaging/markers.py +0 -245
  2988. venv/Lib/site-packages/setuptools/_vendor/packaging/requirements.py +0 -95
  2989. venv/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py +0 -1005
  2990. venv/Lib/site-packages/setuptools/_vendor/packaging/tags.py +0 -546
  2991. venv/Lib/site-packages/setuptools/_vendor/packaging/utils.py +0 -141
  2992. venv/Lib/site-packages/setuptools/_vendor/packaging/version.py +0 -563
  2993. venv/Lib/site-packages/setuptools/_vendor/tomli/__init__.py +0 -11
  2994. venv/Lib/site-packages/setuptools/_vendor/tomli/_parser.py +0 -691
  2995. venv/Lib/site-packages/setuptools/_vendor/tomli/_re.py +0 -107
  2996. venv/Lib/site-packages/setuptools/_vendor/tomli/_types.py +0 -10
  2997. venv/Lib/site-packages/setuptools/_vendor/typing_extensions.py +0 -2296
  2998. venv/Lib/site-packages/setuptools/_vendor/zipp.py +0 -329
  2999. venv/Lib/site-packages/setuptools/archive_util.py +0 -213
  3000. venv/Lib/site-packages/setuptools/build_meta.py +0 -512
  3001. venv/Lib/site-packages/setuptools/command/__init__.py +0 -12
  3002. venv/Lib/site-packages/setuptools/command/alias.py +0 -78
  3003. venv/Lib/site-packages/setuptools/command/bdist_egg.py +0 -456
  3004. venv/Lib/site-packages/setuptools/command/bdist_rpm.py +0 -40
  3005. venv/Lib/site-packages/setuptools/command/build.py +0 -146
  3006. venv/Lib/site-packages/setuptools/command/build_clib.py +0 -101
  3007. venv/Lib/site-packages/setuptools/command/build_ext.py +0 -383
  3008. venv/Lib/site-packages/setuptools/command/build_py.py +0 -368
  3009. venv/Lib/site-packages/setuptools/command/develop.py +0 -194
  3010. venv/Lib/site-packages/setuptools/command/dist_info.py +0 -118
  3011. venv/Lib/site-packages/setuptools/command/easy_install.py +0 -2312
  3012. venv/Lib/site-packages/setuptools/command/editable_wheel.py +0 -856
  3013. venv/Lib/site-packages/setuptools/command/egg_info.py +0 -791
  3014. venv/Lib/site-packages/setuptools/command/install.py +0 -139
  3015. venv/Lib/site-packages/setuptools/command/install_egg_info.py +0 -60
  3016. venv/Lib/site-packages/setuptools/command/install_lib.py +0 -122
  3017. venv/Lib/site-packages/setuptools/command/install_scripts.py +0 -73
  3018. venv/Lib/site-packages/setuptools/command/py36compat.py +0 -134
  3019. venv/Lib/site-packages/setuptools/command/register.py +0 -18
  3020. venv/Lib/site-packages/setuptools/command/rotate.py +0 -64
  3021. venv/Lib/site-packages/setuptools/command/saveopts.py +0 -22
  3022. venv/Lib/site-packages/setuptools/command/sdist.py +0 -210
  3023. venv/Lib/site-packages/setuptools/command/setopt.py +0 -149
  3024. venv/Lib/site-packages/setuptools/command/test.py +0 -251
  3025. venv/Lib/site-packages/setuptools/command/upload.py +0 -17
  3026. venv/Lib/site-packages/setuptools/command/upload_docs.py +0 -212
  3027. venv/Lib/site-packages/setuptools/config/__init__.py +0 -35
  3028. venv/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py +0 -384
  3029. venv/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py +0 -34
  3030. venv/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +0 -318
  3031. venv/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +0 -36
  3032. venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +0 -51
  3033. venv/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +0 -1053
  3034. venv/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py +0 -275
  3035. venv/Lib/site-packages/setuptools/config/expand.py +0 -462
  3036. venv/Lib/site-packages/setuptools/config/pyprojecttoml.py +0 -498
  3037. venv/Lib/site-packages/setuptools/config/setupcfg.py +0 -768
  3038. venv/Lib/site-packages/setuptools/dep_util.py +0 -25
  3039. venv/Lib/site-packages/setuptools/depends.py +0 -176
  3040. venv/Lib/site-packages/setuptools/discovery.py +0 -611
  3041. venv/Lib/site-packages/setuptools/dist.py +0 -1226
  3042. venv/Lib/site-packages/setuptools/errors.py +0 -58
  3043. venv/Lib/site-packages/setuptools/extension.py +0 -148
  3044. venv/Lib/site-packages/setuptools/extern/__init__.py +0 -83
  3045. venv/Lib/site-packages/setuptools/glob.py +0 -167
  3046. venv/Lib/site-packages/setuptools/installer.py +0 -142
  3047. venv/Lib/site-packages/setuptools/launch.py +0 -36
  3048. venv/Lib/site-packages/setuptools/logging.py +0 -37
  3049. venv/Lib/site-packages/setuptools/monkey.py +0 -159
  3050. venv/Lib/site-packages/setuptools/msvc.py +0 -1686
  3051. venv/Lib/site-packages/setuptools/namespaces.py +0 -107
  3052. venv/Lib/site-packages/setuptools/package_index.py +0 -1162
  3053. venv/Lib/site-packages/setuptools/py34compat.py +0 -13
  3054. venv/Lib/site-packages/setuptools/sandbox.py +0 -530
  3055. venv/Lib/site-packages/setuptools/unicode_utils.py +0 -42
  3056. venv/Lib/site-packages/setuptools/version.py +0 -6
  3057. venv/Lib/site-packages/setuptools/wheel.py +0 -231
  3058. venv/Lib/site-packages/setuptools/windows_support.py +0 -29
  3059. venv/Lib/site-packages/shiboken6/__init__.py +0 -27
  3060. venv/Lib/site-packages/shiboken6/_config.py +0 -11
  3061. venv/Lib/site-packages/shiboken6/_git_shiboken_module_version.py +0 -19
  3062. venv/Lib/site-packages/six.py +0 -998
  3063. venv/Lib/site-packages/tomli/__init__.py +0 -11
  3064. venv/Lib/site-packages/tomli/_parser.py +0 -691
  3065. venv/Lib/site-packages/tomli/_re.py +0 -107
  3066. venv/Lib/site-packages/tomli/_types.py +0 -10
  3067. venv/Lib/site-packages/twine/__init__.py +0 -43
  3068. venv/Lib/site-packages/twine/__main__.py +0 -51
  3069. venv/Lib/site-packages/twine/auth.py +0 -101
  3070. venv/Lib/site-packages/twine/cli.py +0 -123
  3071. venv/Lib/site-packages/twine/commands/__init__.py +0 -53
  3072. venv/Lib/site-packages/twine/commands/check.py +0 -183
  3073. venv/Lib/site-packages/twine/commands/register.py +0 -86
  3074. venv/Lib/site-packages/twine/commands/upload.py +0 -198
  3075. venv/Lib/site-packages/twine/exceptions.py +0 -124
  3076. venv/Lib/site-packages/twine/package.py +0 -316
  3077. venv/Lib/site-packages/twine/repository.py +0 -250
  3078. venv/Lib/site-packages/twine/settings.py +0 -335
  3079. venv/Lib/site-packages/twine/utils.py +0 -324
  3080. venv/Lib/site-packages/twine/wheel.py +0 -91
  3081. venv/Lib/site-packages/twine/wininst.py +0 -61
  3082. venv/Lib/site-packages/typing_extensions.py +0 -2209
  3083. venv/Lib/site-packages/urllib3/__init__.py +0 -102
  3084. venv/Lib/site-packages/urllib3/_collections.py +0 -337
  3085. venv/Lib/site-packages/urllib3/_version.py +0 -2
  3086. venv/Lib/site-packages/urllib3/connection.py +0 -567
  3087. venv/Lib/site-packages/urllib3/connectionpool.py +0 -1110
  3088. venv/Lib/site-packages/urllib3/contrib/__init__.py +0 -0
  3089. venv/Lib/site-packages/urllib3/contrib/_appengine_environ.py +0 -36
  3090. venv/Lib/site-packages/urllib3/contrib/_securetransport/__init__.py +0 -0
  3091. venv/Lib/site-packages/urllib3/contrib/_securetransport/bindings.py +0 -519
  3092. venv/Lib/site-packages/urllib3/contrib/_securetransport/low_level.py +0 -397
  3093. venv/Lib/site-packages/urllib3/contrib/appengine.py +0 -314
  3094. venv/Lib/site-packages/urllib3/contrib/ntlmpool.py +0 -130
  3095. venv/Lib/site-packages/urllib3/contrib/pyopenssl.py +0 -518
  3096. venv/Lib/site-packages/urllib3/contrib/securetransport.py +0 -921
  3097. venv/Lib/site-packages/urllib3/contrib/socks.py +0 -216
  3098. venv/Lib/site-packages/urllib3/exceptions.py +0 -323
  3099. venv/Lib/site-packages/urllib3/fields.py +0 -274
  3100. venv/Lib/site-packages/urllib3/filepost.py +0 -98
  3101. venv/Lib/site-packages/urllib3/packages/__init__.py +0 -0
  3102. venv/Lib/site-packages/urllib3/packages/backports/__init__.py +0 -0
  3103. venv/Lib/site-packages/urllib3/packages/backports/makefile.py +0 -51
  3104. venv/Lib/site-packages/urllib3/packages/six.py +0 -1076
  3105. venv/Lib/site-packages/urllib3/poolmanager.py +0 -537
  3106. venv/Lib/site-packages/urllib3/request.py +0 -170
  3107. venv/Lib/site-packages/urllib3/response.py +0 -885
  3108. venv/Lib/site-packages/urllib3/util/__init__.py +0 -49
  3109. venv/Lib/site-packages/urllib3/util/connection.py +0 -149
  3110. venv/Lib/site-packages/urllib3/util/proxy.py +0 -57
  3111. venv/Lib/site-packages/urllib3/util/queue.py +0 -22
  3112. venv/Lib/site-packages/urllib3/util/request.py +0 -146
  3113. venv/Lib/site-packages/urllib3/util/response.py +0 -107
  3114. venv/Lib/site-packages/urllib3/util/retry.py +0 -620
  3115. venv/Lib/site-packages/urllib3/util/ssl_.py +0 -495
  3116. venv/Lib/site-packages/urllib3/util/ssl_match_hostname.py +0 -159
  3117. venv/Lib/site-packages/urllib3/util/ssltransport.py +0 -221
  3118. venv/Lib/site-packages/urllib3/util/timeout.py +0 -268
  3119. venv/Lib/site-packages/urllib3/util/url.py +0 -435
  3120. venv/Lib/site-packages/urllib3/util/wait.py +0 -152
  3121. venv/Lib/site-packages/webencodings/__init__.py +0 -342
  3122. venv/Lib/site-packages/webencodings/labels.py +0 -231
  3123. venv/Lib/site-packages/webencodings/mklabels.py +0 -59
  3124. venv/Lib/site-packages/webencodings/tests.py +0 -153
  3125. venv/Lib/site-packages/webencodings/x_user_defined.py +0 -325
  3126. venv/Lib/site-packages/wheel/__init__.py +0 -3
  3127. venv/Lib/site-packages/wheel/__main__.py +0 -23
  3128. venv/Lib/site-packages/wheel/_setuptools_logging.py +0 -26
  3129. venv/Lib/site-packages/wheel/bdist_wheel.py +0 -550
  3130. venv/Lib/site-packages/wheel/cli/__init__.py +0 -96
  3131. venv/Lib/site-packages/wheel/cli/convert.py +0 -273
  3132. venv/Lib/site-packages/wheel/cli/pack.py +0 -90
  3133. venv/Lib/site-packages/wheel/cli/unpack.py +0 -23
  3134. venv/Lib/site-packages/wheel/macosx_libfile.py +0 -471
  3135. venv/Lib/site-packages/wheel/metadata.py +0 -109
  3136. venv/Lib/site-packages/wheel/util.py +0 -26
  3137. venv/Lib/site-packages/wheel/vendored/__init__.py +0 -0
  3138. venv/Lib/site-packages/wheel/vendored/packaging/__init__.py +0 -0
  3139. venv/Lib/site-packages/wheel/vendored/packaging/_manylinux.py +0 -303
  3140. venv/Lib/site-packages/wheel/vendored/packaging/_musllinux.py +0 -138
  3141. venv/Lib/site-packages/wheel/vendored/packaging/tags.py +0 -478
  3142. venv/Lib/site-packages/wheel/wheelfile.py +0 -191
  3143. venv/Lib/site-packages/win32ctypes/__init__.py +0 -8
  3144. venv/Lib/site-packages/win32ctypes/core/__init__.py +0 -67
  3145. venv/Lib/site-packages/win32ctypes/core/_winerrors.py +0 -9
  3146. venv/Lib/site-packages/win32ctypes/core/cffi/__init__.py +0 -0
  3147. venv/Lib/site-packages/win32ctypes/core/cffi/_authentication.py +0 -162
  3148. venv/Lib/site-packages/win32ctypes/core/cffi/_common.py +0 -27
  3149. venv/Lib/site-packages/win32ctypes/core/cffi/_dll.py +0 -33
  3150. venv/Lib/site-packages/win32ctypes/core/cffi/_nl_support.py +0 -20
  3151. venv/Lib/site-packages/win32ctypes/core/cffi/_resource.py +0 -134
  3152. venv/Lib/site-packages/win32ctypes/core/cffi/_system_information.py +0 -34
  3153. venv/Lib/site-packages/win32ctypes/core/cffi/_time.py +0 -20
  3154. venv/Lib/site-packages/win32ctypes/core/cffi/_util.py +0 -108
  3155. venv/Lib/site-packages/win32ctypes/core/compat.py +0 -31
  3156. venv/Lib/site-packages/win32ctypes/core/ctypes/__init__.py +0 -0
  3157. venv/Lib/site-packages/win32ctypes/core/ctypes/_authentication.py +0 -116
  3158. venv/Lib/site-packages/win32ctypes/core/ctypes/_common.py +0 -62
  3159. venv/Lib/site-packages/win32ctypes/core/ctypes/_dll.py +0 -23
  3160. venv/Lib/site-packages/win32ctypes/core/ctypes/_nl_support.py +0 -14
  3161. venv/Lib/site-packages/win32ctypes/core/ctypes/_resource.py +0 -148
  3162. venv/Lib/site-packages/win32ctypes/core/ctypes/_system_information.py +0 -38
  3163. venv/Lib/site-packages/win32ctypes/core/ctypes/_time.py +0 -17
  3164. venv/Lib/site-packages/win32ctypes/core/ctypes/_util.py +0 -81
  3165. venv/Lib/site-packages/win32ctypes/pywin32/__init__.py +0 -14
  3166. venv/Lib/site-packages/win32ctypes/pywin32/pywintypes.py +0 -37
  3167. venv/Lib/site-packages/win32ctypes/pywin32/win32api.py +0 -297
  3168. venv/Lib/site-packages/win32ctypes/pywin32/win32cred.py +0 -94
  3169. venv/Lib/site-packages/win32ctypes/pywintypes.py +0 -13
  3170. venv/Lib/site-packages/win32ctypes/tests/__init__.py +0 -20
  3171. venv/Lib/site-packages/win32ctypes/tests/compat.py +0 -84
  3172. venv/Lib/site-packages/win32ctypes/tests/test_win32api.py +0 -284
  3173. venv/Lib/site-packages/win32ctypes/tests/test_win32cred.py +0 -159
  3174. venv/Lib/site-packages/win32ctypes/version.py +0 -1
  3175. venv/Lib/site-packages/win32ctypes/win32api.py +0 -13
  3176. venv/Lib/site-packages/win32ctypes/win32cred.py +0 -13
  3177. venv/Lib/site-packages/zipp/__init__.py +0 -386
  3178. venv/Lib/site-packages/zipp/py310compat.py +0 -12
  3179. venv/Scripts/activate_this.py +0 -32
  3180. venv/Scripts/rst2html.py +0 -23
  3181. venv/Scripts/rst2html4.py +0 -26
  3182. venv/Scripts/rst2html5.py +0 -34
  3183. venv/Scripts/rst2latex.py +0 -27
  3184. venv/Scripts/rst2man.py +0 -28
  3185. venv/Scripts/rst2odt.py +0 -27
  3186. venv/Scripts/rst2odt_prepstyles.py +0 -65
  3187. venv/Scripts/rst2pseudoxml.py +0 -23
  3188. venv/Scripts/rst2s5.py +0 -24
  3189. venv/Scripts/rst2xetex.py +0 -28
  3190. venv/Scripts/rst2xml.py +0 -23
  3191. venv/Scripts/rstpep2html.py +0 -25
  3192. {venv/Lib/site-packages/PySide6/scripts → je_editor/pyside_ui/menu}/__init__.py +0 -0
  3193. {venv/Lib/site-packages/bleach/_vendor → je_editor/pyside_ui/ui_setting}/__init__.py +0 -0
  3194. {je_editor-0.0.57.dist-info → je_editor-0.0.59.dist-info}/WHEEL +0 -0
@@ -1,1053 +0,0 @@
1
- # noqa
2
- # type: ignore
3
- # flake8: noqa
4
- # pylint: skip-file
5
- # mypy: ignore-errors
6
- # yapf: disable
7
- # pylama:skip=1
8
-
9
-
10
- # *** PLEASE DO NOT MODIFY DIRECTLY: Automatically generated code ***
11
-
12
-
13
- VERSION = "2.16.3"
14
- import re
15
- from .fastjsonschema_exceptions import JsonSchemaValueException
16
-
17
-
18
- REGEX_PATTERNS = {
19
- '^.*$': re.compile('^.*$'),
20
- '.+': re.compile('.+'),
21
- '^.+$': re.compile('^.+$'),
22
- 'idn-email_re_pattern': re.compile('^[^@]+@[^@]+\\.[^@]+\\Z')
23
- }
24
-
25
- NoneType = type(None)
26
-
27
- def validate(data, custom_formats={}, name_prefix=None):
28
- validate_https___packaging_python_org_en_latest_specifications_declaring_build_dependencies(data, custom_formats, (name_prefix or "data") + "")
29
- return data
30
-
31
- def validate_https___packaging_python_org_en_latest_specifications_declaring_build_dependencies(data, custom_formats={}, name_prefix=None):
32
- if not isinstance(data, (dict)):
33
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-build-dependencies/', 'title': 'Data structure for ``pyproject.toml`` files', '$$description': ['File format containing build-time configurations for the Python ecosystem. ', ':pep:`517` initially defined a build-system independent format for source trees', 'which was complemented by :pep:`518` to provide a way of specifying dependencies ', 'for building Python projects.', 'Please notice the ``project`` table (as initially defined in :pep:`621`) is not included', 'in this schema and should be considered separately.'], 'type': 'object', 'additionalProperties': False, 'properties': {'build-system': {'type': 'object', 'description': 'Table used to store build-related data', 'additionalProperties': False, 'properties': {'requires': {'type': 'array', '$$description': ['List of dependencies in the :pep:`508` format required to execute the build', 'system. Please notice that the resulting dependency graph', '**MUST NOT contain cycles**'], 'items': {'type': 'string'}}, 'build-backend': {'type': 'string', 'description': 'Python object that will be used to perform the build according to :pep:`517`', 'format': 'pep517-backend-reference'}, 'backend-path': {'type': 'array', '$$description': ['List of directories to be prepended to ``sys.path`` when loading the', 'back-end, and running its hooks'], 'items': {'type': 'string', '$comment': 'Should be a path (TODO: enforce it with format?)'}}}, 'required': ['requires']}, 'project': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-project-metadata/', 'title': 'Package metadata stored in the ``project`` table', '$$description': ['Data structure for the **project** table inside ``pyproject.toml``', '(as initially defined in :pep:`621`)'], 'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, 'version': {'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, 'description': {'type': 'string', '$$description': ['The `summary description of the project', '<https://packaging.python.org/specifications/core-metadata/#summary>`_']}, 'readme': {'$$description': ['`Full/detailed description of the project in the form of a README', '<https://peps.python.org/pep-0621/#readme>`_', "with meaning similar to the one defined in `core metadata's Description", '<https://packaging.python.org/specifications/core-metadata/#description>`_'], 'oneOf': [{'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, {'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}]}, 'requires-python': {'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, 'license': {'description': '`Project license <https://peps.python.org/pep-0621/#license>`_.', 'oneOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}]}, 'authors': {'type': 'array', 'items': {'$ref': '#/definitions/author'}, '$$description': ["The people or organizations considered to be the 'authors' of the project.", 'The exact meaning is open to interpretation (e.g. original or primary authors,', 'current maintainers, or owners of the package).']}, 'maintainers': {'type': 'array', 'items': {'$ref': '#/definitions/author'}, '$$description': ["The people or organizations considered to be the 'maintainers' of the project.", 'Similarly to ``authors``, the exact meaning is open to interpretation.']}, 'keywords': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of keywords to assist searching for the distribution in a larger catalog.'}, 'classifiers': {'type': 'array', 'items': {'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, '$$description': ['`Trove classifiers <https://pypi.org/classifiers/>`_', 'which apply to the project.']}, 'urls': {'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, 'scripts': {'$ref': '#/definitions/entry-point-group', '$$description': ['Instruct the installer to create command-line wrappers for the given', '`entry points <https://packaging.python.org/specifications/entry-points/>`_.']}, 'gui-scripts': {'$ref': '#/definitions/entry-point-group', '$$description': ['Instruct the installer to create GUI wrappers for the given', '`entry points <https://packaging.python.org/specifications/entry-points/>`_.', 'The difference between ``scripts`` and ``gui-scripts`` is only relevant in', 'Windows.']}, 'entry-points': {'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$ref': '#/definitions/entry-point-group'}}}, 'dependencies': {'type': 'array', 'description': 'Project (mandatory) dependencies.', 'items': {'$ref': '#/definitions/dependency'}}, 'optional-dependencies': {'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$ref': '#/definitions/dependency'}}}}, 'dynamic': {'type': 'array', '$$description': ['Specifies which fields are intentionally unspecified and expected to be', 'dynamically provided by build tools'], 'items': {'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}}}, 'required': ['name'], 'additionalProperties': False, 'if': {'not': {'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, '$$comment': ['According to :pep:`621`:', ' If the core metadata specification lists a field as "Required", then', ' the metadata MUST specify the field statically or list it in dynamic', 'In turn, `core metadata`_ defines:', ' The required fields are: Metadata-Version, Name, Version.', ' All the other fields are optional.', 'Since ``Metadata-Version`` is defined by the build back-end, ``name`` and', '``version`` are the only mandatory information in ``pyproject.toml``.', '.. _core metadata: https://packaging.python.org/specifications/core-metadata/']}, 'then': {'required': ['version'], '$$description': ['version should be statically defined in the ``version`` field']}, 'definitions': {'author': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, 'entry-point-group': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'dependency': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}, 'tool': {'type': 'object', 'properties': {'distutils': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://docs.python.org/3/install/', 'title': '``tool.distutils`` table', '$$description': ['Originally, ``distutils`` allowed developers to configure arguments for', '``setup.py`` scripts via `distutils configuration files', '<https://docs.python.org/3/install/#distutils-configuration-files>`_.', '``tool.distutils`` subtables could be used with the same purpose', '(NOT CURRENTLY IMPLEMENTED).'], 'type': 'object', 'properties': {'global': {'type': 'object', 'description': 'Global options applied to all ``distutils`` commands'}}, 'patternProperties': {'.+': {'type': 'object'}}, '$comment': 'TODO: Is there a practical way of making this schema more specific?'}, 'setuptools': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://setuptools.pypa.io/en/latest/references/keywords.html', 'title': '``tool.setuptools`` table', '$$description': ['Please notice for the time being the ``setuptools`` project does not specify', 'a way of configuring builds via ``pyproject.toml``.', 'Therefore this schema should be taken just as a *"thought experiment"* on how', 'this *might be done*, by following the principles established in', '`ini2toml <https://ini2toml.readthedocs.io/en/latest/setuptools_pep621.html>`_.', 'It considers only ``setuptools`` `parameters', '<https://setuptools.pypa.io/en/latest/userguide/declarative_config.html>`_', 'that can currently be configured via ``setup.cfg`` and are not covered by :pep:`621`', 'but intentionally excludes ``dependency_links`` and ``setup_requires``.', 'NOTE: ``scripts`` was renamed to ``script-files`` to avoid confusion with', 'entry-point based scripts (defined in :pep:`621`).'], 'type': 'object', 'additionalProperties': False, 'properties': {'platforms': {'type': 'array', 'items': {'type': 'string'}}, 'provides': {'$$description': ['Package and virtual package names contained within this package', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'obsoletes': {'$$description': ['Packages which this package renders obsolete', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'zip-safe': {'description': 'Whether the project can be safely installed and run from a zip file.', 'type': 'boolean'}, 'script-files': {'description': 'Legacy way of defining scripts (entry-points are preferred).', 'type': 'array', 'items': {'type': 'string'}, '$comment': 'TODO: is this field deprecated/should be removed?'}, 'eager-resources': {'$$description': ['Resources that should be extracted together, if any of them is needed,', 'or if any C extensions included in the project are imported.'], 'type': 'array', 'items': {'type': 'string'}}, 'packages': {'$$description': ['Packages that should be included in the distribution.', 'It can be given either as a list of package identifiers', 'or as a ``dict``-like structure with a single key ``find``', 'which corresponds to a dynamic call to', '``setuptools.config.expand.find_packages`` function.', 'The ``find`` key is associated with a nested ``dict``-like structure that can', 'contain ``where``, ``include``, ``exclude`` and ``namespaces`` keys,', 'mimicking the keyword arguments of the associated function.'], 'oneOf': [{'title': 'Array of Python package identifiers', 'type': 'array', 'items': {'$ref': '#/definitions/package-name'}}, {'$ref': '#/definitions/find-directive'}]}, 'package-dir': {'$$description': [':class:`dict`-like structure mapping from package names to directories where their', 'code can be found.', 'The empty string (as key) means that all packages are contained inside', 'the given directory will be included in the distribution.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'const': ''}, {'$ref': '#/definitions/package-name'}]}, 'patternProperties': {'^.*$': {'type': 'string'}}}, 'package-data': {'$$description': ['Mapping from package names to lists of glob patterns.', 'Usually this option is not needed when using ``include-package-data = true``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'include-package-data': {'$$description': ['Automatically include any data files inside the package directories', 'that are specified by ``MANIFEST.in``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'boolean'}, 'exclude-package-data': {'$$description': ['Mapping from package names to lists of glob patterns that should be excluded', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'namespace-packages': {'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'https://setuptools.pypa.io/en/latest/userguide/package_discovery.html'}, 'py-modules': {'description': 'Modules that setuptools will manipulate', 'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'TODO: clarify the relationship with ``packages``'}, 'data-files': {'$$description': ['**DEPRECATED**: dict-like structure where each key represents a directory and', 'the value is a list of glob patterns that should be installed in them.', "Please notice this don't work with wheels. See `data files support", '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'cmdclass': {'$$description': ['Mapping of distutils-style command names to ``setuptools.Command`` subclasses', 'which in turn should be represented by strings with a qualified class name', '(i.e., "dotted" form with module), e.g.::\n\n', ' cmdclass = {mycmd = "pkg.subpkg.module.CommandClass"}\n\n', 'The command class should be a directly defined at the top-level of the', 'containing module (no class nesting).'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'string', 'format': 'python-qualified-identifier'}}}, 'license-files': {'type': 'array', 'items': {'type': 'string'}, '$$description': ['PROVISIONAL: List of glob patterns for all license files being distributed.', '(might become standard with PEP 639).'], 'default': ['LICEN[CS]E*', ' COPYING*', ' NOTICE*', 'AUTHORS*'], '$comment': 'TODO: revise if PEP 639 is accepted. Probably ``project.license-files``?'}, 'dynamic': {'type': 'object', 'description': 'Instructions for loading :pep:`621`-related metadata dynamically', 'additionalProperties': False, 'properties': {'version': {'$$description': ['A version dynamically loaded via either the ``attr:`` or ``file:``', 'directives. Please make sure the given file or attribute respects :pep:`440`.'], 'oneOf': [{'$ref': '#/definitions/attr-directive'}, {'$ref': '#/definitions/file-directive'}]}, 'classifiers': {'$ref': '#/definitions/file-directive'}, 'description': {'$ref': '#/definitions/file-directive'}, 'dependencies': {'$ref': '#/definitions/file-directive'}, 'entry-points': {'$ref': '#/definitions/file-directive'}, 'optional-dependencies': {'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$ref': '#/definitions/file-directive'}}}, 'readme': {'anyOf': [{'$ref': '#/definitions/file-directive'}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}}}}, 'definitions': {'package-name': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}, 'file-directive': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'attr-directive': {'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, 'find-directive': {'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}}}}}}, 'project': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-project-metadata/', 'title': 'Package metadata stored in the ``project`` table', '$$description': ['Data structure for the **project** table inside ``pyproject.toml``', '(as initially defined in :pep:`621`)'], 'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, 'version': {'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, 'description': {'type': 'string', '$$description': ['The `summary description of the project', '<https://packaging.python.org/specifications/core-metadata/#summary>`_']}, 'readme': {'$$description': ['`Full/detailed description of the project in the form of a README', '<https://peps.python.org/pep-0621/#readme>`_', "with meaning similar to the one defined in `core metadata's Description", '<https://packaging.python.org/specifications/core-metadata/#description>`_'], 'oneOf': [{'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, {'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}]}, 'requires-python': {'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, 'license': {'description': '`Project license <https://peps.python.org/pep-0621/#license>`_.', 'oneOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}]}, 'authors': {'type': 'array', 'items': {'$ref': '#/definitions/author'}, '$$description': ["The people or organizations considered to be the 'authors' of the project.", 'The exact meaning is open to interpretation (e.g. original or primary authors,', 'current maintainers, or owners of the package).']}, 'maintainers': {'type': 'array', 'items': {'$ref': '#/definitions/author'}, '$$description': ["The people or organizations considered to be the 'maintainers' of the project.", 'Similarly to ``authors``, the exact meaning is open to interpretation.']}, 'keywords': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of keywords to assist searching for the distribution in a larger catalog.'}, 'classifiers': {'type': 'array', 'items': {'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, '$$description': ['`Trove classifiers <https://pypi.org/classifiers/>`_', 'which apply to the project.']}, 'urls': {'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, 'scripts': {'$ref': '#/definitions/entry-point-group', '$$description': ['Instruct the installer to create command-line wrappers for the given', '`entry points <https://packaging.python.org/specifications/entry-points/>`_.']}, 'gui-scripts': {'$ref': '#/definitions/entry-point-group', '$$description': ['Instruct the installer to create GUI wrappers for the given', '`entry points <https://packaging.python.org/specifications/entry-points/>`_.', 'The difference between ``scripts`` and ``gui-scripts`` is only relevant in', 'Windows.']}, 'entry-points': {'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$ref': '#/definitions/entry-point-group'}}}, 'dependencies': {'type': 'array', 'description': 'Project (mandatory) dependencies.', 'items': {'$ref': '#/definitions/dependency'}}, 'optional-dependencies': {'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$ref': '#/definitions/dependency'}}}}, 'dynamic': {'type': 'array', '$$description': ['Specifies which fields are intentionally unspecified and expected to be', 'dynamically provided by build tools'], 'items': {'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}}}, 'required': ['name'], 'additionalProperties': False, 'if': {'not': {'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, '$$comment': ['According to :pep:`621`:', ' If the core metadata specification lists a field as "Required", then', ' the metadata MUST specify the field statically or list it in dynamic', 'In turn, `core metadata`_ defines:', ' The required fields are: Metadata-Version, Name, Version.', ' All the other fields are optional.', 'Since ``Metadata-Version`` is defined by the build back-end, ``name`` and', '``version`` are the only mandatory information in ``pyproject.toml``.', '.. _core metadata: https://packaging.python.org/specifications/core-metadata/']}, 'then': {'required': ['version'], '$$description': ['version should be statically defined in the ``version`` field']}, 'definitions': {'author': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, 'entry-point-group': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'dependency': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}}, rule='type')
34
- data_is_dict = isinstance(data, dict)
35
- if data_is_dict:
36
- data_keys = set(data.keys())
37
- if "build-system" in data_keys:
38
- data_keys.remove("build-system")
39
- data__buildsystem = data["build-system"]
40
- if not isinstance(data__buildsystem, (dict)):
41
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system must be object", value=data__buildsystem, name="" + (name_prefix or "data") + ".build-system", definition={'type': 'object', 'description': 'Table used to store build-related data', 'additionalProperties': False, 'properties': {'requires': {'type': 'array', '$$description': ['List of dependencies in the :pep:`508` format required to execute the build', 'system. Please notice that the resulting dependency graph', '**MUST NOT contain cycles**'], 'items': {'type': 'string'}}, 'build-backend': {'type': 'string', 'description': 'Python object that will be used to perform the build according to :pep:`517`', 'format': 'pep517-backend-reference'}, 'backend-path': {'type': 'array', '$$description': ['List of directories to be prepended to ``sys.path`` when loading the', 'back-end, and running its hooks'], 'items': {'type': 'string', '$comment': 'Should be a path (TODO: enforce it with format?)'}}}, 'required': ['requires']}, rule='type')
42
- data__buildsystem_is_dict = isinstance(data__buildsystem, dict)
43
- if data__buildsystem_is_dict:
44
- data__buildsystem_len = len(data__buildsystem)
45
- if not all(prop in data__buildsystem for prop in ['requires']):
46
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system must contain ['requires'] properties", value=data__buildsystem, name="" + (name_prefix or "data") + ".build-system", definition={'type': 'object', 'description': 'Table used to store build-related data', 'additionalProperties': False, 'properties': {'requires': {'type': 'array', '$$description': ['List of dependencies in the :pep:`508` format required to execute the build', 'system. Please notice that the resulting dependency graph', '**MUST NOT contain cycles**'], 'items': {'type': 'string'}}, 'build-backend': {'type': 'string', 'description': 'Python object that will be used to perform the build according to :pep:`517`', 'format': 'pep517-backend-reference'}, 'backend-path': {'type': 'array', '$$description': ['List of directories to be prepended to ``sys.path`` when loading the', 'back-end, and running its hooks'], 'items': {'type': 'string', '$comment': 'Should be a path (TODO: enforce it with format?)'}}}, 'required': ['requires']}, rule='required')
47
- data__buildsystem_keys = set(data__buildsystem.keys())
48
- if "requires" in data__buildsystem_keys:
49
- data__buildsystem_keys.remove("requires")
50
- data__buildsystem__requires = data__buildsystem["requires"]
51
- if not isinstance(data__buildsystem__requires, (list, tuple)):
52
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system.requires must be array", value=data__buildsystem__requires, name="" + (name_prefix or "data") + ".build-system.requires", definition={'type': 'array', '$$description': ['List of dependencies in the :pep:`508` format required to execute the build', 'system. Please notice that the resulting dependency graph', '**MUST NOT contain cycles**'], 'items': {'type': 'string'}}, rule='type')
53
- data__buildsystem__requires_is_list = isinstance(data__buildsystem__requires, (list, tuple))
54
- if data__buildsystem__requires_is_list:
55
- data__buildsystem__requires_len = len(data__buildsystem__requires)
56
- for data__buildsystem__requires_x, data__buildsystem__requires_item in enumerate(data__buildsystem__requires):
57
- if not isinstance(data__buildsystem__requires_item, (str)):
58
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system.requires[{data__buildsystem__requires_x}]".format(**locals()) + " must be string", value=data__buildsystem__requires_item, name="" + (name_prefix or "data") + ".build-system.requires[{data__buildsystem__requires_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
59
- if "build-backend" in data__buildsystem_keys:
60
- data__buildsystem_keys.remove("build-backend")
61
- data__buildsystem__buildbackend = data__buildsystem["build-backend"]
62
- if not isinstance(data__buildsystem__buildbackend, (str)):
63
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system.build-backend must be string", value=data__buildsystem__buildbackend, name="" + (name_prefix or "data") + ".build-system.build-backend", definition={'type': 'string', 'description': 'Python object that will be used to perform the build according to :pep:`517`', 'format': 'pep517-backend-reference'}, rule='type')
64
- if isinstance(data__buildsystem__buildbackend, str):
65
- if not custom_formats["pep517-backend-reference"](data__buildsystem__buildbackend):
66
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system.build-backend must be pep517-backend-reference", value=data__buildsystem__buildbackend, name="" + (name_prefix or "data") + ".build-system.build-backend", definition={'type': 'string', 'description': 'Python object that will be used to perform the build according to :pep:`517`', 'format': 'pep517-backend-reference'}, rule='format')
67
- if "backend-path" in data__buildsystem_keys:
68
- data__buildsystem_keys.remove("backend-path")
69
- data__buildsystem__backendpath = data__buildsystem["backend-path"]
70
- if not isinstance(data__buildsystem__backendpath, (list, tuple)):
71
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system.backend-path must be array", value=data__buildsystem__backendpath, name="" + (name_prefix or "data") + ".build-system.backend-path", definition={'type': 'array', '$$description': ['List of directories to be prepended to ``sys.path`` when loading the', 'back-end, and running its hooks'], 'items': {'type': 'string', '$comment': 'Should be a path (TODO: enforce it with format?)'}}, rule='type')
72
- data__buildsystem__backendpath_is_list = isinstance(data__buildsystem__backendpath, (list, tuple))
73
- if data__buildsystem__backendpath_is_list:
74
- data__buildsystem__backendpath_len = len(data__buildsystem__backendpath)
75
- for data__buildsystem__backendpath_x, data__buildsystem__backendpath_item in enumerate(data__buildsystem__backendpath):
76
- if not isinstance(data__buildsystem__backendpath_item, (str)):
77
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system.backend-path[{data__buildsystem__backendpath_x}]".format(**locals()) + " must be string", value=data__buildsystem__backendpath_item, name="" + (name_prefix or "data") + ".build-system.backend-path[{data__buildsystem__backendpath_x}]".format(**locals()) + "", definition={'type': 'string', '$comment': 'Should be a path (TODO: enforce it with format?)'}, rule='type')
78
- if data__buildsystem_keys:
79
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".build-system must not contain "+str(data__buildsystem_keys)+" properties", value=data__buildsystem, name="" + (name_prefix or "data") + ".build-system", definition={'type': 'object', 'description': 'Table used to store build-related data', 'additionalProperties': False, 'properties': {'requires': {'type': 'array', '$$description': ['List of dependencies in the :pep:`508` format required to execute the build', 'system. Please notice that the resulting dependency graph', '**MUST NOT contain cycles**'], 'items': {'type': 'string'}}, 'build-backend': {'type': 'string', 'description': 'Python object that will be used to perform the build according to :pep:`517`', 'format': 'pep517-backend-reference'}, 'backend-path': {'type': 'array', '$$description': ['List of directories to be prepended to ``sys.path`` when loading the', 'back-end, and running its hooks'], 'items': {'type': 'string', '$comment': 'Should be a path (TODO: enforce it with format?)'}}}, 'required': ['requires']}, rule='additionalProperties')
80
- if "project" in data_keys:
81
- data_keys.remove("project")
82
- data__project = data["project"]
83
- validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata(data__project, custom_formats, (name_prefix or "data") + ".project")
84
- if "tool" in data_keys:
85
- data_keys.remove("tool")
86
- data__tool = data["tool"]
87
- if not isinstance(data__tool, (dict)):
88
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".tool must be object", value=data__tool, name="" + (name_prefix or "data") + ".tool", definition={'type': 'object', 'properties': {'distutils': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://docs.python.org/3/install/', 'title': '``tool.distutils`` table', '$$description': ['Originally, ``distutils`` allowed developers to configure arguments for', '``setup.py`` scripts via `distutils configuration files', '<https://docs.python.org/3/install/#distutils-configuration-files>`_.', '``tool.distutils`` subtables could be used with the same purpose', '(NOT CURRENTLY IMPLEMENTED).'], 'type': 'object', 'properties': {'global': {'type': 'object', 'description': 'Global options applied to all ``distutils`` commands'}}, 'patternProperties': {'.+': {'type': 'object'}}, '$comment': 'TODO: Is there a practical way of making this schema more specific?'}, 'setuptools': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://setuptools.pypa.io/en/latest/references/keywords.html', 'title': '``tool.setuptools`` table', '$$description': ['Please notice for the time being the ``setuptools`` project does not specify', 'a way of configuring builds via ``pyproject.toml``.', 'Therefore this schema should be taken just as a *"thought experiment"* on how', 'this *might be done*, by following the principles established in', '`ini2toml <https://ini2toml.readthedocs.io/en/latest/setuptools_pep621.html>`_.', 'It considers only ``setuptools`` `parameters', '<https://setuptools.pypa.io/en/latest/userguide/declarative_config.html>`_', 'that can currently be configured via ``setup.cfg`` and are not covered by :pep:`621`', 'but intentionally excludes ``dependency_links`` and ``setup_requires``.', 'NOTE: ``scripts`` was renamed to ``script-files`` to avoid confusion with', 'entry-point based scripts (defined in :pep:`621`).'], 'type': 'object', 'additionalProperties': False, 'properties': {'platforms': {'type': 'array', 'items': {'type': 'string'}}, 'provides': {'$$description': ['Package and virtual package names contained within this package', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'obsoletes': {'$$description': ['Packages which this package renders obsolete', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'zip-safe': {'description': 'Whether the project can be safely installed and run from a zip file.', 'type': 'boolean'}, 'script-files': {'description': 'Legacy way of defining scripts (entry-points are preferred).', 'type': 'array', 'items': {'type': 'string'}, '$comment': 'TODO: is this field deprecated/should be removed?'}, 'eager-resources': {'$$description': ['Resources that should be extracted together, if any of them is needed,', 'or if any C extensions included in the project are imported.'], 'type': 'array', 'items': {'type': 'string'}}, 'packages': {'$$description': ['Packages that should be included in the distribution.', 'It can be given either as a list of package identifiers', 'or as a ``dict``-like structure with a single key ``find``', 'which corresponds to a dynamic call to', '``setuptools.config.expand.find_packages`` function.', 'The ``find`` key is associated with a nested ``dict``-like structure that can', 'contain ``where``, ``include``, ``exclude`` and ``namespaces`` keys,', 'mimicking the keyword arguments of the associated function.'], 'oneOf': [{'title': 'Array of Python package identifiers', 'type': 'array', 'items': {'$ref': '#/definitions/package-name'}}, {'$ref': '#/definitions/find-directive'}]}, 'package-dir': {'$$description': [':class:`dict`-like structure mapping from package names to directories where their', 'code can be found.', 'The empty string (as key) means that all packages are contained inside', 'the given directory will be included in the distribution.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'const': ''}, {'$ref': '#/definitions/package-name'}]}, 'patternProperties': {'^.*$': {'type': 'string'}}}, 'package-data': {'$$description': ['Mapping from package names to lists of glob patterns.', 'Usually this option is not needed when using ``include-package-data = true``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'include-package-data': {'$$description': ['Automatically include any data files inside the package directories', 'that are specified by ``MANIFEST.in``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'boolean'}, 'exclude-package-data': {'$$description': ['Mapping from package names to lists of glob patterns that should be excluded', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'namespace-packages': {'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'https://setuptools.pypa.io/en/latest/userguide/package_discovery.html'}, 'py-modules': {'description': 'Modules that setuptools will manipulate', 'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'TODO: clarify the relationship with ``packages``'}, 'data-files': {'$$description': ['**DEPRECATED**: dict-like structure where each key represents a directory and', 'the value is a list of glob patterns that should be installed in them.', "Please notice this don't work with wheels. See `data files support", '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'cmdclass': {'$$description': ['Mapping of distutils-style command names to ``setuptools.Command`` subclasses', 'which in turn should be represented by strings with a qualified class name', '(i.e., "dotted" form with module), e.g.::\n\n', ' cmdclass = {mycmd = "pkg.subpkg.module.CommandClass"}\n\n', 'The command class should be a directly defined at the top-level of the', 'containing module (no class nesting).'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'string', 'format': 'python-qualified-identifier'}}}, 'license-files': {'type': 'array', 'items': {'type': 'string'}, '$$description': ['PROVISIONAL: List of glob patterns for all license files being distributed.', '(might become standard with PEP 639).'], 'default': ['LICEN[CS]E*', ' COPYING*', ' NOTICE*', 'AUTHORS*'], '$comment': 'TODO: revise if PEP 639 is accepted. Probably ``project.license-files``?'}, 'dynamic': {'type': 'object', 'description': 'Instructions for loading :pep:`621`-related metadata dynamically', 'additionalProperties': False, 'properties': {'version': {'$$description': ['A version dynamically loaded via either the ``attr:`` or ``file:``', 'directives. Please make sure the given file or attribute respects :pep:`440`.'], 'oneOf': [{'$ref': '#/definitions/attr-directive'}, {'$ref': '#/definitions/file-directive'}]}, 'classifiers': {'$ref': '#/definitions/file-directive'}, 'description': {'$ref': '#/definitions/file-directive'}, 'dependencies': {'$ref': '#/definitions/file-directive'}, 'entry-points': {'$ref': '#/definitions/file-directive'}, 'optional-dependencies': {'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$ref': '#/definitions/file-directive'}}}, 'readme': {'anyOf': [{'$ref': '#/definitions/file-directive'}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}}}}, 'definitions': {'package-name': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}, 'file-directive': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'attr-directive': {'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, 'find-directive': {'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}}}}}, rule='type')
89
- data__tool_is_dict = isinstance(data__tool, dict)
90
- if data__tool_is_dict:
91
- data__tool_keys = set(data__tool.keys())
92
- if "distutils" in data__tool_keys:
93
- data__tool_keys.remove("distutils")
94
- data__tool__distutils = data__tool["distutils"]
95
- validate_https___docs_python_org_3_install(data__tool__distutils, custom_formats, (name_prefix or "data") + ".tool.distutils")
96
- if "setuptools" in data__tool_keys:
97
- data__tool_keys.remove("setuptools")
98
- data__tool__setuptools = data__tool["setuptools"]
99
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html(data__tool__setuptools, custom_formats, (name_prefix or "data") + ".tool.setuptools")
100
- if data_keys:
101
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must not contain "+str(data_keys)+" properties", value=data, name="" + (name_prefix or "data") + "", definition={'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-build-dependencies/', 'title': 'Data structure for ``pyproject.toml`` files', '$$description': ['File format containing build-time configurations for the Python ecosystem. ', ':pep:`517` initially defined a build-system independent format for source trees', 'which was complemented by :pep:`518` to provide a way of specifying dependencies ', 'for building Python projects.', 'Please notice the ``project`` table (as initially defined in :pep:`621`) is not included', 'in this schema and should be considered separately.'], 'type': 'object', 'additionalProperties': False, 'properties': {'build-system': {'type': 'object', 'description': 'Table used to store build-related data', 'additionalProperties': False, 'properties': {'requires': {'type': 'array', '$$description': ['List of dependencies in the :pep:`508` format required to execute the build', 'system. Please notice that the resulting dependency graph', '**MUST NOT contain cycles**'], 'items': {'type': 'string'}}, 'build-backend': {'type': 'string', 'description': 'Python object that will be used to perform the build according to :pep:`517`', 'format': 'pep517-backend-reference'}, 'backend-path': {'type': 'array', '$$description': ['List of directories to be prepended to ``sys.path`` when loading the', 'back-end, and running its hooks'], 'items': {'type': 'string', '$comment': 'Should be a path (TODO: enforce it with format?)'}}}, 'required': ['requires']}, 'project': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-project-metadata/', 'title': 'Package metadata stored in the ``project`` table', '$$description': ['Data structure for the **project** table inside ``pyproject.toml``', '(as initially defined in :pep:`621`)'], 'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, 'version': {'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, 'description': {'type': 'string', '$$description': ['The `summary description of the project', '<https://packaging.python.org/specifications/core-metadata/#summary>`_']}, 'readme': {'$$description': ['`Full/detailed description of the project in the form of a README', '<https://peps.python.org/pep-0621/#readme>`_', "with meaning similar to the one defined in `core metadata's Description", '<https://packaging.python.org/specifications/core-metadata/#description>`_'], 'oneOf': [{'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, {'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}]}, 'requires-python': {'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, 'license': {'description': '`Project license <https://peps.python.org/pep-0621/#license>`_.', 'oneOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}]}, 'authors': {'type': 'array', 'items': {'$ref': '#/definitions/author'}, '$$description': ["The people or organizations considered to be the 'authors' of the project.", 'The exact meaning is open to interpretation (e.g. original or primary authors,', 'current maintainers, or owners of the package).']}, 'maintainers': {'type': 'array', 'items': {'$ref': '#/definitions/author'}, '$$description': ["The people or organizations considered to be the 'maintainers' of the project.", 'Similarly to ``authors``, the exact meaning is open to interpretation.']}, 'keywords': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of keywords to assist searching for the distribution in a larger catalog.'}, 'classifiers': {'type': 'array', 'items': {'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, '$$description': ['`Trove classifiers <https://pypi.org/classifiers/>`_', 'which apply to the project.']}, 'urls': {'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, 'scripts': {'$ref': '#/definitions/entry-point-group', '$$description': ['Instruct the installer to create command-line wrappers for the given', '`entry points <https://packaging.python.org/specifications/entry-points/>`_.']}, 'gui-scripts': {'$ref': '#/definitions/entry-point-group', '$$description': ['Instruct the installer to create GUI wrappers for the given', '`entry points <https://packaging.python.org/specifications/entry-points/>`_.', 'The difference between ``scripts`` and ``gui-scripts`` is only relevant in', 'Windows.']}, 'entry-points': {'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$ref': '#/definitions/entry-point-group'}}}, 'dependencies': {'type': 'array', 'description': 'Project (mandatory) dependencies.', 'items': {'$ref': '#/definitions/dependency'}}, 'optional-dependencies': {'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$ref': '#/definitions/dependency'}}}}, 'dynamic': {'type': 'array', '$$description': ['Specifies which fields are intentionally unspecified and expected to be', 'dynamically provided by build tools'], 'items': {'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}}}, 'required': ['name'], 'additionalProperties': False, 'if': {'not': {'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, '$$comment': ['According to :pep:`621`:', ' If the core metadata specification lists a field as "Required", then', ' the metadata MUST specify the field statically or list it in dynamic', 'In turn, `core metadata`_ defines:', ' The required fields are: Metadata-Version, Name, Version.', ' All the other fields are optional.', 'Since ``Metadata-Version`` is defined by the build back-end, ``name`` and', '``version`` are the only mandatory information in ``pyproject.toml``.', '.. _core metadata: https://packaging.python.org/specifications/core-metadata/']}, 'then': {'required': ['version'], '$$description': ['version should be statically defined in the ``version`` field']}, 'definitions': {'author': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, 'entry-point-group': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'dependency': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}, 'tool': {'type': 'object', 'properties': {'distutils': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://docs.python.org/3/install/', 'title': '``tool.distutils`` table', '$$description': ['Originally, ``distutils`` allowed developers to configure arguments for', '``setup.py`` scripts via `distutils configuration files', '<https://docs.python.org/3/install/#distutils-configuration-files>`_.', '``tool.distutils`` subtables could be used with the same purpose', '(NOT CURRENTLY IMPLEMENTED).'], 'type': 'object', 'properties': {'global': {'type': 'object', 'description': 'Global options applied to all ``distutils`` commands'}}, 'patternProperties': {'.+': {'type': 'object'}}, '$comment': 'TODO: Is there a practical way of making this schema more specific?'}, 'setuptools': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://setuptools.pypa.io/en/latest/references/keywords.html', 'title': '``tool.setuptools`` table', '$$description': ['Please notice for the time being the ``setuptools`` project does not specify', 'a way of configuring builds via ``pyproject.toml``.', 'Therefore this schema should be taken just as a *"thought experiment"* on how', 'this *might be done*, by following the principles established in', '`ini2toml <https://ini2toml.readthedocs.io/en/latest/setuptools_pep621.html>`_.', 'It considers only ``setuptools`` `parameters', '<https://setuptools.pypa.io/en/latest/userguide/declarative_config.html>`_', 'that can currently be configured via ``setup.cfg`` and are not covered by :pep:`621`', 'but intentionally excludes ``dependency_links`` and ``setup_requires``.', 'NOTE: ``scripts`` was renamed to ``script-files`` to avoid confusion with', 'entry-point based scripts (defined in :pep:`621`).'], 'type': 'object', 'additionalProperties': False, 'properties': {'platforms': {'type': 'array', 'items': {'type': 'string'}}, 'provides': {'$$description': ['Package and virtual package names contained within this package', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'obsoletes': {'$$description': ['Packages which this package renders obsolete', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'zip-safe': {'description': 'Whether the project can be safely installed and run from a zip file.', 'type': 'boolean'}, 'script-files': {'description': 'Legacy way of defining scripts (entry-points are preferred).', 'type': 'array', 'items': {'type': 'string'}, '$comment': 'TODO: is this field deprecated/should be removed?'}, 'eager-resources': {'$$description': ['Resources that should be extracted together, if any of them is needed,', 'or if any C extensions included in the project are imported.'], 'type': 'array', 'items': {'type': 'string'}}, 'packages': {'$$description': ['Packages that should be included in the distribution.', 'It can be given either as a list of package identifiers', 'or as a ``dict``-like structure with a single key ``find``', 'which corresponds to a dynamic call to', '``setuptools.config.expand.find_packages`` function.', 'The ``find`` key is associated with a nested ``dict``-like structure that can', 'contain ``where``, ``include``, ``exclude`` and ``namespaces`` keys,', 'mimicking the keyword arguments of the associated function.'], 'oneOf': [{'title': 'Array of Python package identifiers', 'type': 'array', 'items': {'$ref': '#/definitions/package-name'}}, {'$ref': '#/definitions/find-directive'}]}, 'package-dir': {'$$description': [':class:`dict`-like structure mapping from package names to directories where their', 'code can be found.', 'The empty string (as key) means that all packages are contained inside', 'the given directory will be included in the distribution.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'const': ''}, {'$ref': '#/definitions/package-name'}]}, 'patternProperties': {'^.*$': {'type': 'string'}}}, 'package-data': {'$$description': ['Mapping from package names to lists of glob patterns.', 'Usually this option is not needed when using ``include-package-data = true``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'include-package-data': {'$$description': ['Automatically include any data files inside the package directories', 'that are specified by ``MANIFEST.in``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'boolean'}, 'exclude-package-data': {'$$description': ['Mapping from package names to lists of glob patterns that should be excluded', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'namespace-packages': {'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'https://setuptools.pypa.io/en/latest/userguide/package_discovery.html'}, 'py-modules': {'description': 'Modules that setuptools will manipulate', 'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'TODO: clarify the relationship with ``packages``'}, 'data-files': {'$$description': ['**DEPRECATED**: dict-like structure where each key represents a directory and', 'the value is a list of glob patterns that should be installed in them.', "Please notice this don't work with wheels. See `data files support", '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'cmdclass': {'$$description': ['Mapping of distutils-style command names to ``setuptools.Command`` subclasses', 'which in turn should be represented by strings with a qualified class name', '(i.e., "dotted" form with module), e.g.::\n\n', ' cmdclass = {mycmd = "pkg.subpkg.module.CommandClass"}\n\n', 'The command class should be a directly defined at the top-level of the', 'containing module (no class nesting).'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'string', 'format': 'python-qualified-identifier'}}}, 'license-files': {'type': 'array', 'items': {'type': 'string'}, '$$description': ['PROVISIONAL: List of glob patterns for all license files being distributed.', '(might become standard with PEP 639).'], 'default': ['LICEN[CS]E*', ' COPYING*', ' NOTICE*', 'AUTHORS*'], '$comment': 'TODO: revise if PEP 639 is accepted. Probably ``project.license-files``?'}, 'dynamic': {'type': 'object', 'description': 'Instructions for loading :pep:`621`-related metadata dynamically', 'additionalProperties': False, 'properties': {'version': {'$$description': ['A version dynamically loaded via either the ``attr:`` or ``file:``', 'directives. Please make sure the given file or attribute respects :pep:`440`.'], 'oneOf': [{'$ref': '#/definitions/attr-directive'}, {'$ref': '#/definitions/file-directive'}]}, 'classifiers': {'$ref': '#/definitions/file-directive'}, 'description': {'$ref': '#/definitions/file-directive'}, 'dependencies': {'$ref': '#/definitions/file-directive'}, 'entry-points': {'$ref': '#/definitions/file-directive'}, 'optional-dependencies': {'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$ref': '#/definitions/file-directive'}}}, 'readme': {'anyOf': [{'$ref': '#/definitions/file-directive'}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}}}}, 'definitions': {'package-name': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}, 'file-directive': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'attr-directive': {'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, 'find-directive': {'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}}}}}}, 'project': {'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-project-metadata/', 'title': 'Package metadata stored in the ``project`` table', '$$description': ['Data structure for the **project** table inside ``pyproject.toml``', '(as initially defined in :pep:`621`)'], 'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, 'version': {'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, 'description': {'type': 'string', '$$description': ['The `summary description of the project', '<https://packaging.python.org/specifications/core-metadata/#summary>`_']}, 'readme': {'$$description': ['`Full/detailed description of the project in the form of a README', '<https://peps.python.org/pep-0621/#readme>`_', "with meaning similar to the one defined in `core metadata's Description", '<https://packaging.python.org/specifications/core-metadata/#description>`_'], 'oneOf': [{'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, {'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}]}, 'requires-python': {'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, 'license': {'description': '`Project license <https://peps.python.org/pep-0621/#license>`_.', 'oneOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}]}, 'authors': {'type': 'array', 'items': {'$ref': '#/definitions/author'}, '$$description': ["The people or organizations considered to be the 'authors' of the project.", 'The exact meaning is open to interpretation (e.g. original or primary authors,', 'current maintainers, or owners of the package).']}, 'maintainers': {'type': 'array', 'items': {'$ref': '#/definitions/author'}, '$$description': ["The people or organizations considered to be the 'maintainers' of the project.", 'Similarly to ``authors``, the exact meaning is open to interpretation.']}, 'keywords': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of keywords to assist searching for the distribution in a larger catalog.'}, 'classifiers': {'type': 'array', 'items': {'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, '$$description': ['`Trove classifiers <https://pypi.org/classifiers/>`_', 'which apply to the project.']}, 'urls': {'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, 'scripts': {'$ref': '#/definitions/entry-point-group', '$$description': ['Instruct the installer to create command-line wrappers for the given', '`entry points <https://packaging.python.org/specifications/entry-points/>`_.']}, 'gui-scripts': {'$ref': '#/definitions/entry-point-group', '$$description': ['Instruct the installer to create GUI wrappers for the given', '`entry points <https://packaging.python.org/specifications/entry-points/>`_.', 'The difference between ``scripts`` and ``gui-scripts`` is only relevant in', 'Windows.']}, 'entry-points': {'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$ref': '#/definitions/entry-point-group'}}}, 'dependencies': {'type': 'array', 'description': 'Project (mandatory) dependencies.', 'items': {'$ref': '#/definitions/dependency'}}, 'optional-dependencies': {'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$ref': '#/definitions/dependency'}}}}, 'dynamic': {'type': 'array', '$$description': ['Specifies which fields are intentionally unspecified and expected to be', 'dynamically provided by build tools'], 'items': {'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}}}, 'required': ['name'], 'additionalProperties': False, 'if': {'not': {'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, '$$comment': ['According to :pep:`621`:', ' If the core metadata specification lists a field as "Required", then', ' the metadata MUST specify the field statically or list it in dynamic', 'In turn, `core metadata`_ defines:', ' The required fields are: Metadata-Version, Name, Version.', ' All the other fields are optional.', 'Since ``Metadata-Version`` is defined by the build back-end, ``name`` and', '``version`` are the only mandatory information in ``pyproject.toml``.', '.. _core metadata: https://packaging.python.org/specifications/core-metadata/']}, 'then': {'required': ['version'], '$$description': ['version should be statically defined in the ``version`` field']}, 'definitions': {'author': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, 'entry-point-group': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'dependency': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}}, rule='additionalProperties')
102
- return data
103
-
104
- def validate_https___setuptools_pypa_io_en_latest_references_keywords_html(data, custom_formats={}, name_prefix=None):
105
- if not isinstance(data, (dict)):
106
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://setuptools.pypa.io/en/latest/references/keywords.html', 'title': '``tool.setuptools`` table', '$$description': ['Please notice for the time being the ``setuptools`` project does not specify', 'a way of configuring builds via ``pyproject.toml``.', 'Therefore this schema should be taken just as a *"thought experiment"* on how', 'this *might be done*, by following the principles established in', '`ini2toml <https://ini2toml.readthedocs.io/en/latest/setuptools_pep621.html>`_.', 'It considers only ``setuptools`` `parameters', '<https://setuptools.pypa.io/en/latest/userguide/declarative_config.html>`_', 'that can currently be configured via ``setup.cfg`` and are not covered by :pep:`621`', 'but intentionally excludes ``dependency_links`` and ``setup_requires``.', 'NOTE: ``scripts`` was renamed to ``script-files`` to avoid confusion with', 'entry-point based scripts (defined in :pep:`621`).'], 'type': 'object', 'additionalProperties': False, 'properties': {'platforms': {'type': 'array', 'items': {'type': 'string'}}, 'provides': {'$$description': ['Package and virtual package names contained within this package', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'obsoletes': {'$$description': ['Packages which this package renders obsolete', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'zip-safe': {'description': 'Whether the project can be safely installed and run from a zip file.', 'type': 'boolean'}, 'script-files': {'description': 'Legacy way of defining scripts (entry-points are preferred).', 'type': 'array', 'items': {'type': 'string'}, '$comment': 'TODO: is this field deprecated/should be removed?'}, 'eager-resources': {'$$description': ['Resources that should be extracted together, if any of them is needed,', 'or if any C extensions included in the project are imported.'], 'type': 'array', 'items': {'type': 'string'}}, 'packages': {'$$description': ['Packages that should be included in the distribution.', 'It can be given either as a list of package identifiers', 'or as a ``dict``-like structure with a single key ``find``', 'which corresponds to a dynamic call to', '``setuptools.config.expand.find_packages`` function.', 'The ``find`` key is associated with a nested ``dict``-like structure that can', 'contain ``where``, ``include``, ``exclude`` and ``namespaces`` keys,', 'mimicking the keyword arguments of the associated function.'], 'oneOf': [{'title': 'Array of Python package identifiers', 'type': 'array', 'items': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}}, {'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}]}, 'package-dir': {'$$description': [':class:`dict`-like structure mapping from package names to directories where their', 'code can be found.', 'The empty string (as key) means that all packages are contained inside', 'the given directory will be included in the distribution.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'const': ''}, {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}]}, 'patternProperties': {'^.*$': {'type': 'string'}}}, 'package-data': {'$$description': ['Mapping from package names to lists of glob patterns.', 'Usually this option is not needed when using ``include-package-data = true``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'include-package-data': {'$$description': ['Automatically include any data files inside the package directories', 'that are specified by ``MANIFEST.in``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'boolean'}, 'exclude-package-data': {'$$description': ['Mapping from package names to lists of glob patterns that should be excluded', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'namespace-packages': {'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'https://setuptools.pypa.io/en/latest/userguide/package_discovery.html'}, 'py-modules': {'description': 'Modules that setuptools will manipulate', 'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'TODO: clarify the relationship with ``packages``'}, 'data-files': {'$$description': ['**DEPRECATED**: dict-like structure where each key represents a directory and', 'the value is a list of glob patterns that should be installed in them.', "Please notice this don't work with wheels. See `data files support", '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'cmdclass': {'$$description': ['Mapping of distutils-style command names to ``setuptools.Command`` subclasses', 'which in turn should be represented by strings with a qualified class name', '(i.e., "dotted" form with module), e.g.::\n\n', ' cmdclass = {mycmd = "pkg.subpkg.module.CommandClass"}\n\n', 'The command class should be a directly defined at the top-level of the', 'containing module (no class nesting).'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'string', 'format': 'python-qualified-identifier'}}}, 'license-files': {'type': 'array', 'items': {'type': 'string'}, '$$description': ['PROVISIONAL: List of glob patterns for all license files being distributed.', '(might become standard with PEP 639).'], 'default': ['LICEN[CS]E*', ' COPYING*', ' NOTICE*', 'AUTHORS*'], '$comment': 'TODO: revise if PEP 639 is accepted. Probably ``project.license-files``?'}, 'dynamic': {'type': 'object', 'description': 'Instructions for loading :pep:`621`-related metadata dynamically', 'additionalProperties': False, 'properties': {'version': {'$$description': ['A version dynamically loaded via either the ``attr:`` or ``file:``', 'directives. Please make sure the given file or attribute respects :pep:`440`.'], 'oneOf': [{'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}]}, 'classifiers': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'description': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'dependencies': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'entry-points': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'optional-dependencies': {'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}}}, 'readme': {'anyOf': [{'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}}}}, 'definitions': {'package-name': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}, 'file-directive': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'attr-directive': {'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, 'find-directive': {'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}}}, rule='type')
107
- data_is_dict = isinstance(data, dict)
108
- if data_is_dict:
109
- data_keys = set(data.keys())
110
- if "platforms" in data_keys:
111
- data_keys.remove("platforms")
112
- data__platforms = data["platforms"]
113
- if not isinstance(data__platforms, (list, tuple)):
114
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".platforms must be array", value=data__platforms, name="" + (name_prefix or "data") + ".platforms", definition={'type': 'array', 'items': {'type': 'string'}}, rule='type')
115
- data__platforms_is_list = isinstance(data__platforms, (list, tuple))
116
- if data__platforms_is_list:
117
- data__platforms_len = len(data__platforms)
118
- for data__platforms_x, data__platforms_item in enumerate(data__platforms):
119
- if not isinstance(data__platforms_item, (str)):
120
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".platforms[{data__platforms_x}]".format(**locals()) + " must be string", value=data__platforms_item, name="" + (name_prefix or "data") + ".platforms[{data__platforms_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
121
- if "provides" in data_keys:
122
- data_keys.remove("provides")
123
- data__provides = data["provides"]
124
- if not isinstance(data__provides, (list, tuple)):
125
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".provides must be array", value=data__provides, name="" + (name_prefix or "data") + ".provides", definition={'$$description': ['Package and virtual package names contained within this package', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, rule='type')
126
- data__provides_is_list = isinstance(data__provides, (list, tuple))
127
- if data__provides_is_list:
128
- data__provides_len = len(data__provides)
129
- for data__provides_x, data__provides_item in enumerate(data__provides):
130
- if not isinstance(data__provides_item, (str)):
131
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".provides[{data__provides_x}]".format(**locals()) + " must be string", value=data__provides_item, name="" + (name_prefix or "data") + ".provides[{data__provides_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'pep508-identifier'}, rule='type')
132
- if isinstance(data__provides_item, str):
133
- if not custom_formats["pep508-identifier"](data__provides_item):
134
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".provides[{data__provides_x}]".format(**locals()) + " must be pep508-identifier", value=data__provides_item, name="" + (name_prefix or "data") + ".provides[{data__provides_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'pep508-identifier'}, rule='format')
135
- if "obsoletes" in data_keys:
136
- data_keys.remove("obsoletes")
137
- data__obsoletes = data["obsoletes"]
138
- if not isinstance(data__obsoletes, (list, tuple)):
139
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".obsoletes must be array", value=data__obsoletes, name="" + (name_prefix or "data") + ".obsoletes", definition={'$$description': ['Packages which this package renders obsolete', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, rule='type')
140
- data__obsoletes_is_list = isinstance(data__obsoletes, (list, tuple))
141
- if data__obsoletes_is_list:
142
- data__obsoletes_len = len(data__obsoletes)
143
- for data__obsoletes_x, data__obsoletes_item in enumerate(data__obsoletes):
144
- if not isinstance(data__obsoletes_item, (str)):
145
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".obsoletes[{data__obsoletes_x}]".format(**locals()) + " must be string", value=data__obsoletes_item, name="" + (name_prefix or "data") + ".obsoletes[{data__obsoletes_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'pep508-identifier'}, rule='type')
146
- if isinstance(data__obsoletes_item, str):
147
- if not custom_formats["pep508-identifier"](data__obsoletes_item):
148
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".obsoletes[{data__obsoletes_x}]".format(**locals()) + " must be pep508-identifier", value=data__obsoletes_item, name="" + (name_prefix or "data") + ".obsoletes[{data__obsoletes_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'pep508-identifier'}, rule='format')
149
- if "zip-safe" in data_keys:
150
- data_keys.remove("zip-safe")
151
- data__zipsafe = data["zip-safe"]
152
- if not isinstance(data__zipsafe, (bool)):
153
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".zip-safe must be boolean", value=data__zipsafe, name="" + (name_prefix or "data") + ".zip-safe", definition={'description': 'Whether the project can be safely installed and run from a zip file.', 'type': 'boolean'}, rule='type')
154
- if "script-files" in data_keys:
155
- data_keys.remove("script-files")
156
- data__scriptfiles = data["script-files"]
157
- if not isinstance(data__scriptfiles, (list, tuple)):
158
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".script-files must be array", value=data__scriptfiles, name="" + (name_prefix or "data") + ".script-files", definition={'description': 'Legacy way of defining scripts (entry-points are preferred).', 'type': 'array', 'items': {'type': 'string'}, '$comment': 'TODO: is this field deprecated/should be removed?'}, rule='type')
159
- data__scriptfiles_is_list = isinstance(data__scriptfiles, (list, tuple))
160
- if data__scriptfiles_is_list:
161
- data__scriptfiles_len = len(data__scriptfiles)
162
- for data__scriptfiles_x, data__scriptfiles_item in enumerate(data__scriptfiles):
163
- if not isinstance(data__scriptfiles_item, (str)):
164
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".script-files[{data__scriptfiles_x}]".format(**locals()) + " must be string", value=data__scriptfiles_item, name="" + (name_prefix or "data") + ".script-files[{data__scriptfiles_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
165
- if "eager-resources" in data_keys:
166
- data_keys.remove("eager-resources")
167
- data__eagerresources = data["eager-resources"]
168
- if not isinstance(data__eagerresources, (list, tuple)):
169
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".eager-resources must be array", value=data__eagerresources, name="" + (name_prefix or "data") + ".eager-resources", definition={'$$description': ['Resources that should be extracted together, if any of them is needed,', 'or if any C extensions included in the project are imported.'], 'type': 'array', 'items': {'type': 'string'}}, rule='type')
170
- data__eagerresources_is_list = isinstance(data__eagerresources, (list, tuple))
171
- if data__eagerresources_is_list:
172
- data__eagerresources_len = len(data__eagerresources)
173
- for data__eagerresources_x, data__eagerresources_item in enumerate(data__eagerresources):
174
- if not isinstance(data__eagerresources_item, (str)):
175
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".eager-resources[{data__eagerresources_x}]".format(**locals()) + " must be string", value=data__eagerresources_item, name="" + (name_prefix or "data") + ".eager-resources[{data__eagerresources_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
176
- if "packages" in data_keys:
177
- data_keys.remove("packages")
178
- data__packages = data["packages"]
179
- data__packages_one_of_count1 = 0
180
- if data__packages_one_of_count1 < 2:
181
- try:
182
- if not isinstance(data__packages, (list, tuple)):
183
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".packages must be array", value=data__packages, name="" + (name_prefix or "data") + ".packages", definition={'title': 'Array of Python package identifiers', 'type': 'array', 'items': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}}, rule='type')
184
- data__packages_is_list = isinstance(data__packages, (list, tuple))
185
- if data__packages_is_list:
186
- data__packages_len = len(data__packages)
187
- for data__packages_x, data__packages_item in enumerate(data__packages):
188
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_package_name(data__packages_item, custom_formats, (name_prefix or "data") + ".packages[{data__packages_x}]".format(**locals()))
189
- data__packages_one_of_count1 += 1
190
- except JsonSchemaValueException: pass
191
- if data__packages_one_of_count1 < 2:
192
- try:
193
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_find_directive(data__packages, custom_formats, (name_prefix or "data") + ".packages")
194
- data__packages_one_of_count1 += 1
195
- except JsonSchemaValueException: pass
196
- if data__packages_one_of_count1 != 1:
197
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".packages must be valid exactly by one definition" + (" (" + str(data__packages_one_of_count1) + " matches found)"), value=data__packages, name="" + (name_prefix or "data") + ".packages", definition={'$$description': ['Packages that should be included in the distribution.', 'It can be given either as a list of package identifiers', 'or as a ``dict``-like structure with a single key ``find``', 'which corresponds to a dynamic call to', '``setuptools.config.expand.find_packages`` function.', 'The ``find`` key is associated with a nested ``dict``-like structure that can', 'contain ``where``, ``include``, ``exclude`` and ``namespaces`` keys,', 'mimicking the keyword arguments of the associated function.'], 'oneOf': [{'title': 'Array of Python package identifiers', 'type': 'array', 'items': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}}, {'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}]}, rule='oneOf')
198
- if "package-dir" in data_keys:
199
- data_keys.remove("package-dir")
200
- data__packagedir = data["package-dir"]
201
- if not isinstance(data__packagedir, (dict)):
202
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-dir must be object", value=data__packagedir, name="" + (name_prefix or "data") + ".package-dir", definition={'$$description': [':class:`dict`-like structure mapping from package names to directories where their', 'code can be found.', 'The empty string (as key) means that all packages are contained inside', 'the given directory will be included in the distribution.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'const': ''}, {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}]}, 'patternProperties': {'^.*$': {'type': 'string'}}}, rule='type')
203
- data__packagedir_is_dict = isinstance(data__packagedir, dict)
204
- if data__packagedir_is_dict:
205
- data__packagedir_keys = set(data__packagedir.keys())
206
- for data__packagedir_key, data__packagedir_val in data__packagedir.items():
207
- if REGEX_PATTERNS['^.*$'].search(data__packagedir_key):
208
- if data__packagedir_key in data__packagedir_keys:
209
- data__packagedir_keys.remove(data__packagedir_key)
210
- if not isinstance(data__packagedir_val, (str)):
211
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-dir.{data__packagedir_key}".format(**locals()) + " must be string", value=data__packagedir_val, name="" + (name_prefix or "data") + ".package-dir.{data__packagedir_key}".format(**locals()) + "", definition={'type': 'string'}, rule='type')
212
- if data__packagedir_keys:
213
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-dir must not contain "+str(data__packagedir_keys)+" properties", value=data__packagedir, name="" + (name_prefix or "data") + ".package-dir", definition={'$$description': [':class:`dict`-like structure mapping from package names to directories where their', 'code can be found.', 'The empty string (as key) means that all packages are contained inside', 'the given directory will be included in the distribution.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'const': ''}, {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}]}, 'patternProperties': {'^.*$': {'type': 'string'}}}, rule='additionalProperties')
214
- data__packagedir_len = len(data__packagedir)
215
- if data__packagedir_len != 0:
216
- data__packagedir_property_names = True
217
- for data__packagedir_key in data__packagedir:
218
- try:
219
- data__packagedir_key_one_of_count2 = 0
220
- if data__packagedir_key_one_of_count2 < 2:
221
- try:
222
- if data__packagedir_key != "":
223
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-dir must be same as const definition: ", value=data__packagedir_key, name="" + (name_prefix or "data") + ".package-dir", definition={'const': ''}, rule='const')
224
- data__packagedir_key_one_of_count2 += 1
225
- except JsonSchemaValueException: pass
226
- if data__packagedir_key_one_of_count2 < 2:
227
- try:
228
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_package_name(data__packagedir_key, custom_formats, (name_prefix or "data") + ".package-dir")
229
- data__packagedir_key_one_of_count2 += 1
230
- except JsonSchemaValueException: pass
231
- if data__packagedir_key_one_of_count2 != 1:
232
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-dir must be valid exactly by one definition" + (" (" + str(data__packagedir_key_one_of_count2) + " matches found)"), value=data__packagedir_key, name="" + (name_prefix or "data") + ".package-dir", definition={'oneOf': [{'const': ''}, {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}]}, rule='oneOf')
233
- except JsonSchemaValueException:
234
- data__packagedir_property_names = False
235
- if not data__packagedir_property_names:
236
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-dir must be named by propertyName definition", value=data__packagedir, name="" + (name_prefix or "data") + ".package-dir", definition={'$$description': [':class:`dict`-like structure mapping from package names to directories where their', 'code can be found.', 'The empty string (as key) means that all packages are contained inside', 'the given directory will be included in the distribution.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'const': ''}, {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}]}, 'patternProperties': {'^.*$': {'type': 'string'}}}, rule='propertyNames')
237
- if "package-data" in data_keys:
238
- data_keys.remove("package-data")
239
- data__packagedata = data["package-data"]
240
- if not isinstance(data__packagedata, (dict)):
241
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-data must be object", value=data__packagedata, name="" + (name_prefix or "data") + ".package-data", definition={'$$description': ['Mapping from package names to lists of glob patterns.', 'Usually this option is not needed when using ``include-package-data = true``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, rule='type')
242
- data__packagedata_is_dict = isinstance(data__packagedata, dict)
243
- if data__packagedata_is_dict:
244
- data__packagedata_keys = set(data__packagedata.keys())
245
- for data__packagedata_key, data__packagedata_val in data__packagedata.items():
246
- if REGEX_PATTERNS['^.*$'].search(data__packagedata_key):
247
- if data__packagedata_key in data__packagedata_keys:
248
- data__packagedata_keys.remove(data__packagedata_key)
249
- if not isinstance(data__packagedata_val, (list, tuple)):
250
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-data.{data__packagedata_key}".format(**locals()) + " must be array", value=data__packagedata_val, name="" + (name_prefix or "data") + ".package-data.{data__packagedata_key}".format(**locals()) + "", definition={'type': 'array', 'items': {'type': 'string'}}, rule='type')
251
- data__packagedata_val_is_list = isinstance(data__packagedata_val, (list, tuple))
252
- if data__packagedata_val_is_list:
253
- data__packagedata_val_len = len(data__packagedata_val)
254
- for data__packagedata_val_x, data__packagedata_val_item in enumerate(data__packagedata_val):
255
- if not isinstance(data__packagedata_val_item, (str)):
256
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-data.{data__packagedata_key}[{data__packagedata_val_x}]".format(**locals()) + " must be string", value=data__packagedata_val_item, name="" + (name_prefix or "data") + ".package-data.{data__packagedata_key}[{data__packagedata_val_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
257
- if data__packagedata_keys:
258
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-data must not contain "+str(data__packagedata_keys)+" properties", value=data__packagedata, name="" + (name_prefix or "data") + ".package-data", definition={'$$description': ['Mapping from package names to lists of glob patterns.', 'Usually this option is not needed when using ``include-package-data = true``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, rule='additionalProperties')
259
- data__packagedata_len = len(data__packagedata)
260
- if data__packagedata_len != 0:
261
- data__packagedata_property_names = True
262
- for data__packagedata_key in data__packagedata:
263
- try:
264
- data__packagedata_key_one_of_count3 = 0
265
- if data__packagedata_key_one_of_count3 < 2:
266
- try:
267
- if isinstance(data__packagedata_key, str):
268
- if not custom_formats["python-module-name"](data__packagedata_key):
269
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-data must be python-module-name", value=data__packagedata_key, name="" + (name_prefix or "data") + ".package-data", definition={'format': 'python-module-name'}, rule='format')
270
- data__packagedata_key_one_of_count3 += 1
271
- except JsonSchemaValueException: pass
272
- if data__packagedata_key_one_of_count3 < 2:
273
- try:
274
- if data__packagedata_key != "*":
275
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-data must be same as const definition: *", value=data__packagedata_key, name="" + (name_prefix or "data") + ".package-data", definition={'const': '*'}, rule='const')
276
- data__packagedata_key_one_of_count3 += 1
277
- except JsonSchemaValueException: pass
278
- if data__packagedata_key_one_of_count3 != 1:
279
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-data must be valid exactly by one definition" + (" (" + str(data__packagedata_key_one_of_count3) + " matches found)"), value=data__packagedata_key, name="" + (name_prefix or "data") + ".package-data", definition={'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, rule='oneOf')
280
- except JsonSchemaValueException:
281
- data__packagedata_property_names = False
282
- if not data__packagedata_property_names:
283
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".package-data must be named by propertyName definition", value=data__packagedata, name="" + (name_prefix or "data") + ".package-data", definition={'$$description': ['Mapping from package names to lists of glob patterns.', 'Usually this option is not needed when using ``include-package-data = true``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, rule='propertyNames')
284
- if "include-package-data" in data_keys:
285
- data_keys.remove("include-package-data")
286
- data__includepackagedata = data["include-package-data"]
287
- if not isinstance(data__includepackagedata, (bool)):
288
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".include-package-data must be boolean", value=data__includepackagedata, name="" + (name_prefix or "data") + ".include-package-data", definition={'$$description': ['Automatically include any data files inside the package directories', 'that are specified by ``MANIFEST.in``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'boolean'}, rule='type')
289
- if "exclude-package-data" in data_keys:
290
- data_keys.remove("exclude-package-data")
291
- data__excludepackagedata = data["exclude-package-data"]
292
- if not isinstance(data__excludepackagedata, (dict)):
293
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".exclude-package-data must be object", value=data__excludepackagedata, name="" + (name_prefix or "data") + ".exclude-package-data", definition={'$$description': ['Mapping from package names to lists of glob patterns that should be excluded', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, rule='type')
294
- data__excludepackagedata_is_dict = isinstance(data__excludepackagedata, dict)
295
- if data__excludepackagedata_is_dict:
296
- data__excludepackagedata_keys = set(data__excludepackagedata.keys())
297
- for data__excludepackagedata_key, data__excludepackagedata_val in data__excludepackagedata.items():
298
- if REGEX_PATTERNS['^.*$'].search(data__excludepackagedata_key):
299
- if data__excludepackagedata_key in data__excludepackagedata_keys:
300
- data__excludepackagedata_keys.remove(data__excludepackagedata_key)
301
- if not isinstance(data__excludepackagedata_val, (list, tuple)):
302
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".exclude-package-data.{data__excludepackagedata_key}".format(**locals()) + " must be array", value=data__excludepackagedata_val, name="" + (name_prefix or "data") + ".exclude-package-data.{data__excludepackagedata_key}".format(**locals()) + "", definition={'type': 'array', 'items': {'type': 'string'}}, rule='type')
303
- data__excludepackagedata_val_is_list = isinstance(data__excludepackagedata_val, (list, tuple))
304
- if data__excludepackagedata_val_is_list:
305
- data__excludepackagedata_val_len = len(data__excludepackagedata_val)
306
- for data__excludepackagedata_val_x, data__excludepackagedata_val_item in enumerate(data__excludepackagedata_val):
307
- if not isinstance(data__excludepackagedata_val_item, (str)):
308
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".exclude-package-data.{data__excludepackagedata_key}[{data__excludepackagedata_val_x}]".format(**locals()) + " must be string", value=data__excludepackagedata_val_item, name="" + (name_prefix or "data") + ".exclude-package-data.{data__excludepackagedata_key}[{data__excludepackagedata_val_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
309
- if data__excludepackagedata_keys:
310
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".exclude-package-data must not contain "+str(data__excludepackagedata_keys)+" properties", value=data__excludepackagedata, name="" + (name_prefix or "data") + ".exclude-package-data", definition={'$$description': ['Mapping from package names to lists of glob patterns that should be excluded', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, rule='additionalProperties')
311
- data__excludepackagedata_len = len(data__excludepackagedata)
312
- if data__excludepackagedata_len != 0:
313
- data__excludepackagedata_property_names = True
314
- for data__excludepackagedata_key in data__excludepackagedata:
315
- try:
316
- data__excludepackagedata_key_one_of_count4 = 0
317
- if data__excludepackagedata_key_one_of_count4 < 2:
318
- try:
319
- if isinstance(data__excludepackagedata_key, str):
320
- if not custom_formats["python-module-name"](data__excludepackagedata_key):
321
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".exclude-package-data must be python-module-name", value=data__excludepackagedata_key, name="" + (name_prefix or "data") + ".exclude-package-data", definition={'format': 'python-module-name'}, rule='format')
322
- data__excludepackagedata_key_one_of_count4 += 1
323
- except JsonSchemaValueException: pass
324
- if data__excludepackagedata_key_one_of_count4 < 2:
325
- try:
326
- if data__excludepackagedata_key != "*":
327
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".exclude-package-data must be same as const definition: *", value=data__excludepackagedata_key, name="" + (name_prefix or "data") + ".exclude-package-data", definition={'const': '*'}, rule='const')
328
- data__excludepackagedata_key_one_of_count4 += 1
329
- except JsonSchemaValueException: pass
330
- if data__excludepackagedata_key_one_of_count4 != 1:
331
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".exclude-package-data must be valid exactly by one definition" + (" (" + str(data__excludepackagedata_key_one_of_count4) + " matches found)"), value=data__excludepackagedata_key, name="" + (name_prefix or "data") + ".exclude-package-data", definition={'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, rule='oneOf')
332
- except JsonSchemaValueException:
333
- data__excludepackagedata_property_names = False
334
- if not data__excludepackagedata_property_names:
335
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".exclude-package-data must be named by propertyName definition", value=data__excludepackagedata, name="" + (name_prefix or "data") + ".exclude-package-data", definition={'$$description': ['Mapping from package names to lists of glob patterns that should be excluded', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, rule='propertyNames')
336
- if "namespace-packages" in data_keys:
337
- data_keys.remove("namespace-packages")
338
- data__namespacepackages = data["namespace-packages"]
339
- if not isinstance(data__namespacepackages, (list, tuple)):
340
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".namespace-packages must be array", value=data__namespacepackages, name="" + (name_prefix or "data") + ".namespace-packages", definition={'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'https://setuptools.pypa.io/en/latest/userguide/package_discovery.html'}, rule='type')
341
- data__namespacepackages_is_list = isinstance(data__namespacepackages, (list, tuple))
342
- if data__namespacepackages_is_list:
343
- data__namespacepackages_len = len(data__namespacepackages)
344
- for data__namespacepackages_x, data__namespacepackages_item in enumerate(data__namespacepackages):
345
- if not isinstance(data__namespacepackages_item, (str)):
346
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".namespace-packages[{data__namespacepackages_x}]".format(**locals()) + " must be string", value=data__namespacepackages_item, name="" + (name_prefix or "data") + ".namespace-packages[{data__namespacepackages_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'python-module-name'}, rule='type')
347
- if isinstance(data__namespacepackages_item, str):
348
- if not custom_formats["python-module-name"](data__namespacepackages_item):
349
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".namespace-packages[{data__namespacepackages_x}]".format(**locals()) + " must be python-module-name", value=data__namespacepackages_item, name="" + (name_prefix or "data") + ".namespace-packages[{data__namespacepackages_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'python-module-name'}, rule='format')
350
- if "py-modules" in data_keys:
351
- data_keys.remove("py-modules")
352
- data__pymodules = data["py-modules"]
353
- if not isinstance(data__pymodules, (list, tuple)):
354
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".py-modules must be array", value=data__pymodules, name="" + (name_prefix or "data") + ".py-modules", definition={'description': 'Modules that setuptools will manipulate', 'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'TODO: clarify the relationship with ``packages``'}, rule='type')
355
- data__pymodules_is_list = isinstance(data__pymodules, (list, tuple))
356
- if data__pymodules_is_list:
357
- data__pymodules_len = len(data__pymodules)
358
- for data__pymodules_x, data__pymodules_item in enumerate(data__pymodules):
359
- if not isinstance(data__pymodules_item, (str)):
360
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".py-modules[{data__pymodules_x}]".format(**locals()) + " must be string", value=data__pymodules_item, name="" + (name_prefix or "data") + ".py-modules[{data__pymodules_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'python-module-name'}, rule='type')
361
- if isinstance(data__pymodules_item, str):
362
- if not custom_formats["python-module-name"](data__pymodules_item):
363
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".py-modules[{data__pymodules_x}]".format(**locals()) + " must be python-module-name", value=data__pymodules_item, name="" + (name_prefix or "data") + ".py-modules[{data__pymodules_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'python-module-name'}, rule='format')
364
- if "data-files" in data_keys:
365
- data_keys.remove("data-files")
366
- data__datafiles = data["data-files"]
367
- if not isinstance(data__datafiles, (dict)):
368
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".data-files must be object", value=data__datafiles, name="" + (name_prefix or "data") + ".data-files", definition={'$$description': ['**DEPRECATED**: dict-like structure where each key represents a directory and', 'the value is a list of glob patterns that should be installed in them.', "Please notice this don't work with wheels. See `data files support", '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, rule='type')
369
- data__datafiles_is_dict = isinstance(data__datafiles, dict)
370
- if data__datafiles_is_dict:
371
- data__datafiles_keys = set(data__datafiles.keys())
372
- for data__datafiles_key, data__datafiles_val in data__datafiles.items():
373
- if REGEX_PATTERNS['^.*$'].search(data__datafiles_key):
374
- if data__datafiles_key in data__datafiles_keys:
375
- data__datafiles_keys.remove(data__datafiles_key)
376
- if not isinstance(data__datafiles_val, (list, tuple)):
377
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".data-files.{data__datafiles_key}".format(**locals()) + " must be array", value=data__datafiles_val, name="" + (name_prefix or "data") + ".data-files.{data__datafiles_key}".format(**locals()) + "", definition={'type': 'array', 'items': {'type': 'string'}}, rule='type')
378
- data__datafiles_val_is_list = isinstance(data__datafiles_val, (list, tuple))
379
- if data__datafiles_val_is_list:
380
- data__datafiles_val_len = len(data__datafiles_val)
381
- for data__datafiles_val_x, data__datafiles_val_item in enumerate(data__datafiles_val):
382
- if not isinstance(data__datafiles_val_item, (str)):
383
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".data-files.{data__datafiles_key}[{data__datafiles_val_x}]".format(**locals()) + " must be string", value=data__datafiles_val_item, name="" + (name_prefix or "data") + ".data-files.{data__datafiles_key}[{data__datafiles_val_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
384
- if "cmdclass" in data_keys:
385
- data_keys.remove("cmdclass")
386
- data__cmdclass = data["cmdclass"]
387
- if not isinstance(data__cmdclass, (dict)):
388
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".cmdclass must be object", value=data__cmdclass, name="" + (name_prefix or "data") + ".cmdclass", definition={'$$description': ['Mapping of distutils-style command names to ``setuptools.Command`` subclasses', 'which in turn should be represented by strings with a qualified class name', '(i.e., "dotted" form with module), e.g.::\n\n', ' cmdclass = {mycmd = "pkg.subpkg.module.CommandClass"}\n\n', 'The command class should be a directly defined at the top-level of the', 'containing module (no class nesting).'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'string', 'format': 'python-qualified-identifier'}}}, rule='type')
389
- data__cmdclass_is_dict = isinstance(data__cmdclass, dict)
390
- if data__cmdclass_is_dict:
391
- data__cmdclass_keys = set(data__cmdclass.keys())
392
- for data__cmdclass_key, data__cmdclass_val in data__cmdclass.items():
393
- if REGEX_PATTERNS['^.*$'].search(data__cmdclass_key):
394
- if data__cmdclass_key in data__cmdclass_keys:
395
- data__cmdclass_keys.remove(data__cmdclass_key)
396
- if not isinstance(data__cmdclass_val, (str)):
397
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".cmdclass.{data__cmdclass_key}".format(**locals()) + " must be string", value=data__cmdclass_val, name="" + (name_prefix or "data") + ".cmdclass.{data__cmdclass_key}".format(**locals()) + "", definition={'type': 'string', 'format': 'python-qualified-identifier'}, rule='type')
398
- if isinstance(data__cmdclass_val, str):
399
- if not custom_formats["python-qualified-identifier"](data__cmdclass_val):
400
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".cmdclass.{data__cmdclass_key}".format(**locals()) + " must be python-qualified-identifier", value=data__cmdclass_val, name="" + (name_prefix or "data") + ".cmdclass.{data__cmdclass_key}".format(**locals()) + "", definition={'type': 'string', 'format': 'python-qualified-identifier'}, rule='format')
401
- if "license-files" in data_keys:
402
- data_keys.remove("license-files")
403
- data__licensefiles = data["license-files"]
404
- if not isinstance(data__licensefiles, (list, tuple)):
405
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".license-files must be array", value=data__licensefiles, name="" + (name_prefix or "data") + ".license-files", definition={'type': 'array', 'items': {'type': 'string'}, '$$description': ['PROVISIONAL: List of glob patterns for all license files being distributed.', '(might become standard with PEP 639).'], 'default': ['LICEN[CS]E*', ' COPYING*', ' NOTICE*', 'AUTHORS*'], '$comment': 'TODO: revise if PEP 639 is accepted. Probably ``project.license-files``?'}, rule='type')
406
- data__licensefiles_is_list = isinstance(data__licensefiles, (list, tuple))
407
- if data__licensefiles_is_list:
408
- data__licensefiles_len = len(data__licensefiles)
409
- for data__licensefiles_x, data__licensefiles_item in enumerate(data__licensefiles):
410
- if not isinstance(data__licensefiles_item, (str)):
411
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".license-files[{data__licensefiles_x}]".format(**locals()) + " must be string", value=data__licensefiles_item, name="" + (name_prefix or "data") + ".license-files[{data__licensefiles_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
412
- else: data["license-files"] = ['LICEN[CS]E*', ' COPYING*', ' NOTICE*', 'AUTHORS*']
413
- if "dynamic" in data_keys:
414
- data_keys.remove("dynamic")
415
- data__dynamic = data["dynamic"]
416
- if not isinstance(data__dynamic, (dict)):
417
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic must be object", value=data__dynamic, name="" + (name_prefix or "data") + ".dynamic", definition={'type': 'object', 'description': 'Instructions for loading :pep:`621`-related metadata dynamically', 'additionalProperties': False, 'properties': {'version': {'$$description': ['A version dynamically loaded via either the ``attr:`` or ``file:``', 'directives. Please make sure the given file or attribute respects :pep:`440`.'], 'oneOf': [{'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}]}, 'classifiers': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'description': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'dependencies': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'entry-points': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'optional-dependencies': {'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}}}, 'readme': {'anyOf': [{'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}}}, rule='type')
418
- data__dynamic_is_dict = isinstance(data__dynamic, dict)
419
- if data__dynamic_is_dict:
420
- data__dynamic_keys = set(data__dynamic.keys())
421
- if "version" in data__dynamic_keys:
422
- data__dynamic_keys.remove("version")
423
- data__dynamic__version = data__dynamic["version"]
424
- data__dynamic__version_one_of_count5 = 0
425
- if data__dynamic__version_one_of_count5 < 2:
426
- try:
427
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_attr_directive(data__dynamic__version, custom_formats, (name_prefix or "data") + ".dynamic.version")
428
- data__dynamic__version_one_of_count5 += 1
429
- except JsonSchemaValueException: pass
430
- if data__dynamic__version_one_of_count5 < 2:
431
- try:
432
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_file_directive(data__dynamic__version, custom_formats, (name_prefix or "data") + ".dynamic.version")
433
- data__dynamic__version_one_of_count5 += 1
434
- except JsonSchemaValueException: pass
435
- if data__dynamic__version_one_of_count5 != 1:
436
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic.version must be valid exactly by one definition" + (" (" + str(data__dynamic__version_one_of_count5) + " matches found)"), value=data__dynamic__version, name="" + (name_prefix or "data") + ".dynamic.version", definition={'$$description': ['A version dynamically loaded via either the ``attr:`` or ``file:``', 'directives. Please make sure the given file or attribute respects :pep:`440`.'], 'oneOf': [{'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}]}, rule='oneOf')
437
- if "classifiers" in data__dynamic_keys:
438
- data__dynamic_keys.remove("classifiers")
439
- data__dynamic__classifiers = data__dynamic["classifiers"]
440
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_file_directive(data__dynamic__classifiers, custom_formats, (name_prefix or "data") + ".dynamic.classifiers")
441
- if "description" in data__dynamic_keys:
442
- data__dynamic_keys.remove("description")
443
- data__dynamic__description = data__dynamic["description"]
444
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_file_directive(data__dynamic__description, custom_formats, (name_prefix or "data") + ".dynamic.description")
445
- if "dependencies" in data__dynamic_keys:
446
- data__dynamic_keys.remove("dependencies")
447
- data__dynamic__dependencies = data__dynamic["dependencies"]
448
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_file_directive(data__dynamic__dependencies, custom_formats, (name_prefix or "data") + ".dynamic.dependencies")
449
- if "entry-points" in data__dynamic_keys:
450
- data__dynamic_keys.remove("entry-points")
451
- data__dynamic__entrypoints = data__dynamic["entry-points"]
452
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_file_directive(data__dynamic__entrypoints, custom_formats, (name_prefix or "data") + ".dynamic.entry-points")
453
- if "optional-dependencies" in data__dynamic_keys:
454
- data__dynamic_keys.remove("optional-dependencies")
455
- data__dynamic__optionaldependencies = data__dynamic["optional-dependencies"]
456
- if not isinstance(data__dynamic__optionaldependencies, (dict)):
457
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic.optional-dependencies must be object", value=data__dynamic__optionaldependencies, name="" + (name_prefix or "data") + ".dynamic.optional-dependencies", definition={'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}}}, rule='type')
458
- data__dynamic__optionaldependencies_is_dict = isinstance(data__dynamic__optionaldependencies, dict)
459
- if data__dynamic__optionaldependencies_is_dict:
460
- data__dynamic__optionaldependencies_keys = set(data__dynamic__optionaldependencies.keys())
461
- for data__dynamic__optionaldependencies_key, data__dynamic__optionaldependencies_val in data__dynamic__optionaldependencies.items():
462
- if REGEX_PATTERNS['.+'].search(data__dynamic__optionaldependencies_key):
463
- if data__dynamic__optionaldependencies_key in data__dynamic__optionaldependencies_keys:
464
- data__dynamic__optionaldependencies_keys.remove(data__dynamic__optionaldependencies_key)
465
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_file_directive(data__dynamic__optionaldependencies_val, custom_formats, (name_prefix or "data") + ".dynamic.optional-dependencies.{data__dynamic__optionaldependencies_key}".format(**locals()))
466
- if data__dynamic__optionaldependencies_keys:
467
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic.optional-dependencies must not contain "+str(data__dynamic__optionaldependencies_keys)+" properties", value=data__dynamic__optionaldependencies, name="" + (name_prefix or "data") + ".dynamic.optional-dependencies", definition={'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}}}, rule='additionalProperties')
468
- data__dynamic__optionaldependencies_len = len(data__dynamic__optionaldependencies)
469
- if data__dynamic__optionaldependencies_len != 0:
470
- data__dynamic__optionaldependencies_property_names = True
471
- for data__dynamic__optionaldependencies_key in data__dynamic__optionaldependencies:
472
- try:
473
- if isinstance(data__dynamic__optionaldependencies_key, str):
474
- if not custom_formats["python-identifier"](data__dynamic__optionaldependencies_key):
475
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic.optional-dependencies must be python-identifier", value=data__dynamic__optionaldependencies_key, name="" + (name_prefix or "data") + ".dynamic.optional-dependencies", definition={'format': 'python-identifier'}, rule='format')
476
- except JsonSchemaValueException:
477
- data__dynamic__optionaldependencies_property_names = False
478
- if not data__dynamic__optionaldependencies_property_names:
479
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic.optional-dependencies must be named by propertyName definition", value=data__dynamic__optionaldependencies, name="" + (name_prefix or "data") + ".dynamic.optional-dependencies", definition={'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}}}, rule='propertyNames')
480
- if "readme" in data__dynamic_keys:
481
- data__dynamic_keys.remove("readme")
482
- data__dynamic__readme = data__dynamic["readme"]
483
- data__dynamic__readme_any_of_count6 = 0
484
- if not data__dynamic__readme_any_of_count6:
485
- try:
486
- validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_file_directive(data__dynamic__readme, custom_formats, (name_prefix or "data") + ".dynamic.readme")
487
- data__dynamic__readme_any_of_count6 += 1
488
- except JsonSchemaValueException: pass
489
- if not data__dynamic__readme_any_of_count6:
490
- try:
491
- data__dynamic__readme_is_dict = isinstance(data__dynamic__readme, dict)
492
- if data__dynamic__readme_is_dict:
493
- data__dynamic__readme_keys = set(data__dynamic__readme.keys())
494
- if "content-type" in data__dynamic__readme_keys:
495
- data__dynamic__readme_keys.remove("content-type")
496
- data__dynamic__readme__contenttype = data__dynamic__readme["content-type"]
497
- if not isinstance(data__dynamic__readme__contenttype, (str)):
498
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic.readme.content-type must be string", value=data__dynamic__readme__contenttype, name="" + (name_prefix or "data") + ".dynamic.readme.content-type", definition={'type': 'string'}, rule='type')
499
- data__dynamic__readme_any_of_count6 += 1
500
- except JsonSchemaValueException: pass
501
- if not data__dynamic__readme_any_of_count6:
502
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic.readme cannot be validated by any definition", value=data__dynamic__readme, name="" + (name_prefix or "data") + ".dynamic.readme", definition={'anyOf': [{'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}, rule='anyOf')
503
- data__dynamic__readme_is_dict = isinstance(data__dynamic__readme, dict)
504
- if data__dynamic__readme_is_dict:
505
- data__dynamic__readme_len = len(data__dynamic__readme)
506
- if not all(prop in data__dynamic__readme for prop in ['file']):
507
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic.readme must contain ['file'] properties", value=data__dynamic__readme, name="" + (name_prefix or "data") + ".dynamic.readme", definition={'anyOf': [{'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}, rule='required')
508
- if data__dynamic_keys:
509
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic must not contain "+str(data__dynamic_keys)+" properties", value=data__dynamic, name="" + (name_prefix or "data") + ".dynamic", definition={'type': 'object', 'description': 'Instructions for loading :pep:`621`-related metadata dynamically', 'additionalProperties': False, 'properties': {'version': {'$$description': ['A version dynamically loaded via either the ``attr:`` or ``file:``', 'directives. Please make sure the given file or attribute respects :pep:`440`.'], 'oneOf': [{'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}]}, 'classifiers': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'description': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'dependencies': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'entry-points': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'optional-dependencies': {'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}}}, 'readme': {'anyOf': [{'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}}}, rule='additionalProperties')
510
- if data_keys:
511
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must not contain "+str(data_keys)+" properties", value=data, name="" + (name_prefix or "data") + "", definition={'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://setuptools.pypa.io/en/latest/references/keywords.html', 'title': '``tool.setuptools`` table', '$$description': ['Please notice for the time being the ``setuptools`` project does not specify', 'a way of configuring builds via ``pyproject.toml``.', 'Therefore this schema should be taken just as a *"thought experiment"* on how', 'this *might be done*, by following the principles established in', '`ini2toml <https://ini2toml.readthedocs.io/en/latest/setuptools_pep621.html>`_.', 'It considers only ``setuptools`` `parameters', '<https://setuptools.pypa.io/en/latest/userguide/declarative_config.html>`_', 'that can currently be configured via ``setup.cfg`` and are not covered by :pep:`621`', 'but intentionally excludes ``dependency_links`` and ``setup_requires``.', 'NOTE: ``scripts`` was renamed to ``script-files`` to avoid confusion with', 'entry-point based scripts (defined in :pep:`621`).'], 'type': 'object', 'additionalProperties': False, 'properties': {'platforms': {'type': 'array', 'items': {'type': 'string'}}, 'provides': {'$$description': ['Package and virtual package names contained within this package', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'obsoletes': {'$$description': ['Packages which this package renders obsolete', '**(not supported by pip)**'], 'type': 'array', 'items': {'type': 'string', 'format': 'pep508-identifier'}}, 'zip-safe': {'description': 'Whether the project can be safely installed and run from a zip file.', 'type': 'boolean'}, 'script-files': {'description': 'Legacy way of defining scripts (entry-points are preferred).', 'type': 'array', 'items': {'type': 'string'}, '$comment': 'TODO: is this field deprecated/should be removed?'}, 'eager-resources': {'$$description': ['Resources that should be extracted together, if any of them is needed,', 'or if any C extensions included in the project are imported.'], 'type': 'array', 'items': {'type': 'string'}}, 'packages': {'$$description': ['Packages that should be included in the distribution.', 'It can be given either as a list of package identifiers', 'or as a ``dict``-like structure with a single key ``find``', 'which corresponds to a dynamic call to', '``setuptools.config.expand.find_packages`` function.', 'The ``find`` key is associated with a nested ``dict``-like structure that can', 'contain ``where``, ``include``, ``exclude`` and ``namespaces`` keys,', 'mimicking the keyword arguments of the associated function.'], 'oneOf': [{'title': 'Array of Python package identifiers', 'type': 'array', 'items': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}}, {'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}]}, 'package-dir': {'$$description': [':class:`dict`-like structure mapping from package names to directories where their', 'code can be found.', 'The empty string (as key) means that all packages are contained inside', 'the given directory will be included in the distribution.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'const': ''}, {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}]}, 'patternProperties': {'^.*$': {'type': 'string'}}}, 'package-data': {'$$description': ['Mapping from package names to lists of glob patterns.', 'Usually this option is not needed when using ``include-package-data = true``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'include-package-data': {'$$description': ['Automatically include any data files inside the package directories', 'that are specified by ``MANIFEST.in``', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'boolean'}, 'exclude-package-data': {'$$description': ['Mapping from package names to lists of glob patterns that should be excluded', 'For more information on how to include data files, check ``setuptools`` `docs', '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_.'], 'type': 'object', 'additionalProperties': False, 'propertyNames': {'oneOf': [{'format': 'python-module-name'}, {'const': '*'}]}, 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'namespace-packages': {'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'https://setuptools.pypa.io/en/latest/userguide/package_discovery.html'}, 'py-modules': {'description': 'Modules that setuptools will manipulate', 'type': 'array', 'items': {'type': 'string', 'format': 'python-module-name'}, '$comment': 'TODO: clarify the relationship with ``packages``'}, 'data-files': {'$$description': ['**DEPRECATED**: dict-like structure where each key represents a directory and', 'the value is a list of glob patterns that should be installed in them.', "Please notice this don't work with wheels. See `data files support", '<https://setuptools.pypa.io/en/latest/userguide/datafiles.html>`_'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'array', 'items': {'type': 'string'}}}}, 'cmdclass': {'$$description': ['Mapping of distutils-style command names to ``setuptools.Command`` subclasses', 'which in turn should be represented by strings with a qualified class name', '(i.e., "dotted" form with module), e.g.::\n\n', ' cmdclass = {mycmd = "pkg.subpkg.module.CommandClass"}\n\n', 'The command class should be a directly defined at the top-level of the', 'containing module (no class nesting).'], 'type': 'object', 'patternProperties': {'^.*$': {'type': 'string', 'format': 'python-qualified-identifier'}}}, 'license-files': {'type': 'array', 'items': {'type': 'string'}, '$$description': ['PROVISIONAL: List of glob patterns for all license files being distributed.', '(might become standard with PEP 639).'], 'default': ['LICEN[CS]E*', ' COPYING*', ' NOTICE*', 'AUTHORS*'], '$comment': 'TODO: revise if PEP 639 is accepted. Probably ``project.license-files``?'}, 'dynamic': {'type': 'object', 'description': 'Instructions for loading :pep:`621`-related metadata dynamically', 'additionalProperties': False, 'properties': {'version': {'$$description': ['A version dynamically loaded via either the ``attr:`` or ``file:``', 'directives. Please make sure the given file or attribute respects :pep:`440`.'], 'oneOf': [{'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}]}, 'classifiers': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'description': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'dependencies': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'entry-points': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'optional-dependencies': {'type': 'object', 'propertyNames': {'format': 'python-identifier'}, 'additionalProperties': False, 'patternProperties': {'.+': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}}}, 'readme': {'anyOf': [{'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, {'properties': {'content-type': {'type': 'string'}}}], 'required': ['file']}}}}, 'definitions': {'package-name': {'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}, 'file-directive': {'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, 'attr-directive': {'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, 'find-directive': {'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}}}, rule='additionalProperties')
512
- return data
513
-
514
- def validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_file_directive(data, custom_formats={}, name_prefix=None):
515
- if not isinstance(data, (dict)):
516
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, rule='type')
517
- data_is_dict = isinstance(data, dict)
518
- if data_is_dict:
519
- data_len = len(data)
520
- if not all(prop in data for prop in ['file']):
521
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must contain ['file'] properties", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, rule='required')
522
- data_keys = set(data.keys())
523
- if "file" in data_keys:
524
- data_keys.remove("file")
525
- data__file = data["file"]
526
- data__file_one_of_count7 = 0
527
- if data__file_one_of_count7 < 2:
528
- try:
529
- if not isinstance(data__file, (str)):
530
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".file must be string", value=data__file, name="" + (name_prefix or "data") + ".file", definition={'type': 'string'}, rule='type')
531
- data__file_one_of_count7 += 1
532
- except JsonSchemaValueException: pass
533
- if data__file_one_of_count7 < 2:
534
- try:
535
- if not isinstance(data__file, (list, tuple)):
536
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".file must be array", value=data__file, name="" + (name_prefix or "data") + ".file", definition={'type': 'array', 'items': {'type': 'string'}}, rule='type')
537
- data__file_is_list = isinstance(data__file, (list, tuple))
538
- if data__file_is_list:
539
- data__file_len = len(data__file)
540
- for data__file_x, data__file_item in enumerate(data__file):
541
- if not isinstance(data__file_item, (str)):
542
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".file[{data__file_x}]".format(**locals()) + " must be string", value=data__file_item, name="" + (name_prefix or "data") + ".file[{data__file_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
543
- data__file_one_of_count7 += 1
544
- except JsonSchemaValueException: pass
545
- if data__file_one_of_count7 != 1:
546
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".file must be valid exactly by one definition" + (" (" + str(data__file_one_of_count7) + " matches found)"), value=data__file, name="" + (name_prefix or "data") + ".file", definition={'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}, rule='oneOf')
547
- if data_keys:
548
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must not contain "+str(data_keys)+" properties", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/file-directive', 'title': "'file:' directive", 'description': 'Value is read from a file (or list of files and then concatenated)', 'type': 'object', 'additionalProperties': False, 'properties': {'file': {'oneOf': [{'type': 'string'}, {'type': 'array', 'items': {'type': 'string'}}]}}, 'required': ['file']}, rule='additionalProperties')
549
- return data
550
-
551
- def validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_attr_directive(data, custom_formats={}, name_prefix=None):
552
- if not isinstance(data, (dict)):
553
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, rule='type')
554
- data_is_dict = isinstance(data, dict)
555
- if data_is_dict:
556
- data_len = len(data)
557
- if not all(prop in data for prop in ['attr']):
558
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must contain ['attr'] properties", value=data, name="" + (name_prefix or "data") + "", definition={'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, rule='required')
559
- data_keys = set(data.keys())
560
- if "attr" in data_keys:
561
- data_keys.remove("attr")
562
- data__attr = data["attr"]
563
- if not isinstance(data__attr, (str)):
564
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".attr must be string", value=data__attr, name="" + (name_prefix or "data") + ".attr", definition={'type': 'string'}, rule='type')
565
- if data_keys:
566
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must not contain "+str(data_keys)+" properties", value=data, name="" + (name_prefix or "data") + "", definition={'title': "'attr:' directive", '$id': '#/definitions/attr-directive', '$$description': ['Value is read from a module attribute. Supports callables and iterables;', 'unsupported types are cast via ``str()``'], 'type': 'object', 'additionalProperties': False, 'properties': {'attr': {'type': 'string'}}, 'required': ['attr']}, rule='additionalProperties')
567
- return data
568
-
569
- def validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_find_directive(data, custom_formats={}, name_prefix=None):
570
- if not isinstance(data, (dict)):
571
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}, rule='type')
572
- data_is_dict = isinstance(data, dict)
573
- if data_is_dict:
574
- data_keys = set(data.keys())
575
- if "find" in data_keys:
576
- data_keys.remove("find")
577
- data__find = data["find"]
578
- if not isinstance(data__find, (dict)):
579
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find must be object", value=data__find, name="" + (name_prefix or "data") + ".find", definition={'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}, rule='type')
580
- data__find_is_dict = isinstance(data__find, dict)
581
- if data__find_is_dict:
582
- data__find_keys = set(data__find.keys())
583
- if "where" in data__find_keys:
584
- data__find_keys.remove("where")
585
- data__find__where = data__find["where"]
586
- if not isinstance(data__find__where, (list, tuple)):
587
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find.where must be array", value=data__find__where, name="" + (name_prefix or "data") + ".find.where", definition={'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, rule='type')
588
- data__find__where_is_list = isinstance(data__find__where, (list, tuple))
589
- if data__find__where_is_list:
590
- data__find__where_len = len(data__find__where)
591
- for data__find__where_x, data__find__where_item in enumerate(data__find__where):
592
- if not isinstance(data__find__where_item, (str)):
593
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find.where[{data__find__where_x}]".format(**locals()) + " must be string", value=data__find__where_item, name="" + (name_prefix or "data") + ".find.where[{data__find__where_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
594
- if "exclude" in data__find_keys:
595
- data__find_keys.remove("exclude")
596
- data__find__exclude = data__find["exclude"]
597
- if not isinstance(data__find__exclude, (list, tuple)):
598
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find.exclude must be array", value=data__find__exclude, name="" + (name_prefix or "data") + ".find.exclude", definition={'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, rule='type')
599
- data__find__exclude_is_list = isinstance(data__find__exclude, (list, tuple))
600
- if data__find__exclude_is_list:
601
- data__find__exclude_len = len(data__find__exclude)
602
- for data__find__exclude_x, data__find__exclude_item in enumerate(data__find__exclude):
603
- if not isinstance(data__find__exclude_item, (str)):
604
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find.exclude[{data__find__exclude_x}]".format(**locals()) + " must be string", value=data__find__exclude_item, name="" + (name_prefix or "data") + ".find.exclude[{data__find__exclude_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
605
- if "include" in data__find_keys:
606
- data__find_keys.remove("include")
607
- data__find__include = data__find["include"]
608
- if not isinstance(data__find__include, (list, tuple)):
609
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find.include must be array", value=data__find__include, name="" + (name_prefix or "data") + ".find.include", definition={'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, rule='type')
610
- data__find__include_is_list = isinstance(data__find__include, (list, tuple))
611
- if data__find__include_is_list:
612
- data__find__include_len = len(data__find__include)
613
- for data__find__include_x, data__find__include_item in enumerate(data__find__include):
614
- if not isinstance(data__find__include_item, (str)):
615
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find.include[{data__find__include_x}]".format(**locals()) + " must be string", value=data__find__include_item, name="" + (name_prefix or "data") + ".find.include[{data__find__include_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
616
- if "namespaces" in data__find_keys:
617
- data__find_keys.remove("namespaces")
618
- data__find__namespaces = data__find["namespaces"]
619
- if not isinstance(data__find__namespaces, (bool)):
620
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find.namespaces must be boolean", value=data__find__namespaces, name="" + (name_prefix or "data") + ".find.namespaces", definition={'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}, rule='type')
621
- if data__find_keys:
622
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".find must not contain "+str(data__find_keys)+" properties", value=data__find, name="" + (name_prefix or "data") + ".find", definition={'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}, rule='additionalProperties')
623
- if data_keys:
624
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must not contain "+str(data_keys)+" properties", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/find-directive', 'title': "'find:' directive", 'type': 'object', 'additionalProperties': False, 'properties': {'find': {'type': 'object', '$$description': ['Dynamic `package discovery', '<https://setuptools.pypa.io/en/latest/userguide/package_discovery.html>`_.'], 'additionalProperties': False, 'properties': {'where': {'description': 'Directories to be searched for packages (Unix-style relative path)', 'type': 'array', 'items': {'type': 'string'}}, 'exclude': {'type': 'array', '$$description': ['Exclude packages that match the values listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'include': {'type': 'array', '$$description': ['Restrict the found packages to just the ones listed in this field.', "Can container shell-style wildcards (e.g. ``'pkg.*'``)"], 'items': {'type': 'string'}}, 'namespaces': {'type': 'boolean', '$$description': ['When ``True``, directories without a ``__init__.py`` file will also', 'be scanned for :pep:`420`-style implicit namespaces']}}}}}, rule='additionalProperties')
625
- return data
626
-
627
- def validate_https___setuptools_pypa_io_en_latest_references_keywords_html__definitions_package_name(data, custom_formats={}, name_prefix=None):
628
- if not isinstance(data, (str)):
629
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be string", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}, rule='type')
630
- data_any_of_count8 = 0
631
- if not data_any_of_count8:
632
- try:
633
- if isinstance(data, str):
634
- if not custom_formats["python-module-name"](data):
635
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be python-module-name", value=data, name="" + (name_prefix or "data") + "", definition={'format': 'python-module-name'}, rule='format')
636
- data_any_of_count8 += 1
637
- except JsonSchemaValueException: pass
638
- if not data_any_of_count8:
639
- try:
640
- if isinstance(data, str):
641
- if not custom_formats["pep561-stub-name"](data):
642
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be pep561-stub-name", value=data, name="" + (name_prefix or "data") + "", definition={'format': 'pep561-stub-name'}, rule='format')
643
- data_any_of_count8 += 1
644
- except JsonSchemaValueException: pass
645
- if not data_any_of_count8:
646
- raise JsonSchemaValueException("" + (name_prefix or "data") + " cannot be validated by any definition", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/package-name', 'title': 'Valid package name', 'description': 'Valid package name (importable or PEP 561).', 'type': 'string', 'anyOf': [{'format': 'python-module-name'}, {'format': 'pep561-stub-name'}]}, rule='anyOf')
647
- return data
648
-
649
- def validate_https___docs_python_org_3_install(data, custom_formats={}, name_prefix=None):
650
- if not isinstance(data, (dict)):
651
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://docs.python.org/3/install/', 'title': '``tool.distutils`` table', '$$description': ['Originally, ``distutils`` allowed developers to configure arguments for', '``setup.py`` scripts via `distutils configuration files', '<https://docs.python.org/3/install/#distutils-configuration-files>`_.', '``tool.distutils`` subtables could be used with the same purpose', '(NOT CURRENTLY IMPLEMENTED).'], 'type': 'object', 'properties': {'global': {'type': 'object', 'description': 'Global options applied to all ``distutils`` commands'}}, 'patternProperties': {'.+': {'type': 'object'}}, '$comment': 'TODO: Is there a practical way of making this schema more specific?'}, rule='type')
652
- data_is_dict = isinstance(data, dict)
653
- if data_is_dict:
654
- data_keys = set(data.keys())
655
- if "global" in data_keys:
656
- data_keys.remove("global")
657
- data__global = data["global"]
658
- if not isinstance(data__global, (dict)):
659
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".global must be object", value=data__global, name="" + (name_prefix or "data") + ".global", definition={'type': 'object', 'description': 'Global options applied to all ``distutils`` commands'}, rule='type')
660
- for data_key, data_val in data.items():
661
- if REGEX_PATTERNS['.+'].search(data_key):
662
- if data_key in data_keys:
663
- data_keys.remove(data_key)
664
- if not isinstance(data_val, (dict)):
665
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".{data_key}".format(**locals()) + " must be object", value=data_val, name="" + (name_prefix or "data") + ".{data_key}".format(**locals()) + "", definition={'type': 'object'}, rule='type')
666
- return data
667
-
668
- def validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata(data, custom_formats={}, name_prefix=None):
669
- if not isinstance(data, (dict)):
670
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-project-metadata/', 'title': 'Package metadata stored in the ``project`` table', '$$description': ['Data structure for the **project** table inside ``pyproject.toml``', '(as initially defined in :pep:`621`)'], 'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, 'version': {'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, 'description': {'type': 'string', '$$description': ['The `summary description of the project', '<https://packaging.python.org/specifications/core-metadata/#summary>`_']}, 'readme': {'$$description': ['`Full/detailed description of the project in the form of a README', '<https://peps.python.org/pep-0621/#readme>`_', "with meaning similar to the one defined in `core metadata's Description", '<https://packaging.python.org/specifications/core-metadata/#description>`_'], 'oneOf': [{'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, {'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}]}, 'requires-python': {'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, 'license': {'description': '`Project license <https://peps.python.org/pep-0621/#license>`_.', 'oneOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}]}, 'authors': {'type': 'array', 'items': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, '$$description': ["The people or organizations considered to be the 'authors' of the project.", 'The exact meaning is open to interpretation (e.g. original or primary authors,', 'current maintainers, or owners of the package).']}, 'maintainers': {'type': 'array', 'items': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, '$$description': ["The people or organizations considered to be the 'maintainers' of the project.", 'Similarly to ``authors``, the exact meaning is open to interpretation.']}, 'keywords': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of keywords to assist searching for the distribution in a larger catalog.'}, 'classifiers': {'type': 'array', 'items': {'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, '$$description': ['`Trove classifiers <https://pypi.org/classifiers/>`_', 'which apply to the project.']}, 'urls': {'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, 'scripts': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'gui-scripts': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'entry-points': {'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}}}, 'dependencies': {'type': 'array', 'description': 'Project (mandatory) dependencies.', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}, 'optional-dependencies': {'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}}, 'dynamic': {'type': 'array', '$$description': ['Specifies which fields are intentionally unspecified and expected to be', 'dynamically provided by build tools'], 'items': {'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}}}, 'required': ['name'], 'additionalProperties': False, 'if': {'not': {'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, '$$comment': ['According to :pep:`621`:', ' If the core metadata specification lists a field as "Required", then', ' the metadata MUST specify the field statically or list it in dynamic', 'In turn, `core metadata`_ defines:', ' The required fields are: Metadata-Version, Name, Version.', ' All the other fields are optional.', 'Since ``Metadata-Version`` is defined by the build back-end, ``name`` and', '``version`` are the only mandatory information in ``pyproject.toml``.', '.. _core metadata: https://packaging.python.org/specifications/core-metadata/']}, 'then': {'required': ['version'], '$$description': ['version should be statically defined in the ``version`` field']}, 'definitions': {'author': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, 'entry-point-group': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'dependency': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}, rule='type')
671
- data_is_dict = isinstance(data, dict)
672
- if data_is_dict:
673
- data_len = len(data)
674
- if not all(prop in data for prop in ['name']):
675
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must contain ['name'] properties", value=data, name="" + (name_prefix or "data") + "", definition={'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-project-metadata/', 'title': 'Package metadata stored in the ``project`` table', '$$description': ['Data structure for the **project** table inside ``pyproject.toml``', '(as initially defined in :pep:`621`)'], 'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, 'version': {'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, 'description': {'type': 'string', '$$description': ['The `summary description of the project', '<https://packaging.python.org/specifications/core-metadata/#summary>`_']}, 'readme': {'$$description': ['`Full/detailed description of the project in the form of a README', '<https://peps.python.org/pep-0621/#readme>`_', "with meaning similar to the one defined in `core metadata's Description", '<https://packaging.python.org/specifications/core-metadata/#description>`_'], 'oneOf': [{'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, {'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}]}, 'requires-python': {'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, 'license': {'description': '`Project license <https://peps.python.org/pep-0621/#license>`_.', 'oneOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}]}, 'authors': {'type': 'array', 'items': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, '$$description': ["The people or organizations considered to be the 'authors' of the project.", 'The exact meaning is open to interpretation (e.g. original or primary authors,', 'current maintainers, or owners of the package).']}, 'maintainers': {'type': 'array', 'items': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, '$$description': ["The people or organizations considered to be the 'maintainers' of the project.", 'Similarly to ``authors``, the exact meaning is open to interpretation.']}, 'keywords': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of keywords to assist searching for the distribution in a larger catalog.'}, 'classifiers': {'type': 'array', 'items': {'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, '$$description': ['`Trove classifiers <https://pypi.org/classifiers/>`_', 'which apply to the project.']}, 'urls': {'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, 'scripts': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'gui-scripts': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'entry-points': {'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}}}, 'dependencies': {'type': 'array', 'description': 'Project (mandatory) dependencies.', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}, 'optional-dependencies': {'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}}, 'dynamic': {'type': 'array', '$$description': ['Specifies which fields are intentionally unspecified and expected to be', 'dynamically provided by build tools'], 'items': {'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}}}, 'required': ['name'], 'additionalProperties': False, 'if': {'not': {'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, '$$comment': ['According to :pep:`621`:', ' If the core metadata specification lists a field as "Required", then', ' the metadata MUST specify the field statically or list it in dynamic', 'In turn, `core metadata`_ defines:', ' The required fields are: Metadata-Version, Name, Version.', ' All the other fields are optional.', 'Since ``Metadata-Version`` is defined by the build back-end, ``name`` and', '``version`` are the only mandatory information in ``pyproject.toml``.', '.. _core metadata: https://packaging.python.org/specifications/core-metadata/']}, 'then': {'required': ['version'], '$$description': ['version should be statically defined in the ``version`` field']}, 'definitions': {'author': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, 'entry-point-group': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'dependency': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}, rule='required')
676
- data_keys = set(data.keys())
677
- if "name" in data_keys:
678
- data_keys.remove("name")
679
- data__name = data["name"]
680
- if not isinstance(data__name, (str)):
681
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".name must be string", value=data__name, name="" + (name_prefix or "data") + ".name", definition={'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, rule='type')
682
- if isinstance(data__name, str):
683
- if not custom_formats["pep508-identifier"](data__name):
684
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".name must be pep508-identifier", value=data__name, name="" + (name_prefix or "data") + ".name", definition={'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, rule='format')
685
- if "version" in data_keys:
686
- data_keys.remove("version")
687
- data__version = data["version"]
688
- if not isinstance(data__version, (str)):
689
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".version must be string", value=data__version, name="" + (name_prefix or "data") + ".version", definition={'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, rule='type')
690
- if isinstance(data__version, str):
691
- if not custom_formats["pep440"](data__version):
692
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".version must be pep440", value=data__version, name="" + (name_prefix or "data") + ".version", definition={'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, rule='format')
693
- if "description" in data_keys:
694
- data_keys.remove("description")
695
- data__description = data["description"]
696
- if not isinstance(data__description, (str)):
697
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".description must be string", value=data__description, name="" + (name_prefix or "data") + ".description", definition={'type': 'string', '$$description': ['The `summary description of the project', '<https://packaging.python.org/specifications/core-metadata/#summary>`_']}, rule='type')
698
- if "readme" in data_keys:
699
- data_keys.remove("readme")
700
- data__readme = data["readme"]
701
- data__readme_one_of_count9 = 0
702
- if data__readme_one_of_count9 < 2:
703
- try:
704
- if not isinstance(data__readme, (str)):
705
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme must be string", value=data__readme, name="" + (name_prefix or "data") + ".readme", definition={'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, rule='type')
706
- data__readme_one_of_count9 += 1
707
- except JsonSchemaValueException: pass
708
- if data__readme_one_of_count9 < 2:
709
- try:
710
- if not isinstance(data__readme, (dict)):
711
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme must be object", value=data__readme, name="" + (name_prefix or "data") + ".readme", definition={'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}, rule='type')
712
- data__readme_any_of_count10 = 0
713
- if not data__readme_any_of_count10:
714
- try:
715
- data__readme_is_dict = isinstance(data__readme, dict)
716
- if data__readme_is_dict:
717
- data__readme_len = len(data__readme)
718
- if not all(prop in data__readme for prop in ['file']):
719
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme must contain ['file'] properties", value=data__readme, name="" + (name_prefix or "data") + ".readme", definition={'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, rule='required')
720
- data__readme_keys = set(data__readme.keys())
721
- if "file" in data__readme_keys:
722
- data__readme_keys.remove("file")
723
- data__readme__file = data__readme["file"]
724
- if not isinstance(data__readme__file, (str)):
725
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme.file must be string", value=data__readme__file, name="" + (name_prefix or "data") + ".readme.file", definition={'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}, rule='type')
726
- data__readme_any_of_count10 += 1
727
- except JsonSchemaValueException: pass
728
- if not data__readme_any_of_count10:
729
- try:
730
- data__readme_is_dict = isinstance(data__readme, dict)
731
- if data__readme_is_dict:
732
- data__readme_len = len(data__readme)
733
- if not all(prop in data__readme for prop in ['text']):
734
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme must contain ['text'] properties", value=data__readme, name="" + (name_prefix or "data") + ".readme", definition={'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}, rule='required')
735
- data__readme_keys = set(data__readme.keys())
736
- if "text" in data__readme_keys:
737
- data__readme_keys.remove("text")
738
- data__readme__text = data__readme["text"]
739
- if not isinstance(data__readme__text, (str)):
740
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme.text must be string", value=data__readme__text, name="" + (name_prefix or "data") + ".readme.text", definition={'type': 'string', 'description': 'Full text describing the project.'}, rule='type')
741
- data__readme_any_of_count10 += 1
742
- except JsonSchemaValueException: pass
743
- if not data__readme_any_of_count10:
744
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme cannot be validated by any definition", value=data__readme, name="" + (name_prefix or "data") + ".readme", definition={'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, rule='anyOf')
745
- data__readme_is_dict = isinstance(data__readme, dict)
746
- if data__readme_is_dict:
747
- data__readme_len = len(data__readme)
748
- if not all(prop in data__readme for prop in ['content-type']):
749
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme must contain ['content-type'] properties", value=data__readme, name="" + (name_prefix or "data") + ".readme", definition={'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}, rule='required')
750
- data__readme_keys = set(data__readme.keys())
751
- if "content-type" in data__readme_keys:
752
- data__readme_keys.remove("content-type")
753
- data__readme__contenttype = data__readme["content-type"]
754
- if not isinstance(data__readme__contenttype, (str)):
755
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme.content-type must be string", value=data__readme__contenttype, name="" + (name_prefix or "data") + ".readme.content-type", definition={'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}, rule='type')
756
- data__readme_one_of_count9 += 1
757
- except JsonSchemaValueException: pass
758
- if data__readme_one_of_count9 != 1:
759
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".readme must be valid exactly by one definition" + (" (" + str(data__readme_one_of_count9) + " matches found)"), value=data__readme, name="" + (name_prefix or "data") + ".readme", definition={'$$description': ['`Full/detailed description of the project in the form of a README', '<https://peps.python.org/pep-0621/#readme>`_', "with meaning similar to the one defined in `core metadata's Description", '<https://packaging.python.org/specifications/core-metadata/#description>`_'], 'oneOf': [{'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, {'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}]}, rule='oneOf')
760
- if "requires-python" in data_keys:
761
- data_keys.remove("requires-python")
762
- data__requirespython = data["requires-python"]
763
- if not isinstance(data__requirespython, (str)):
764
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".requires-python must be string", value=data__requirespython, name="" + (name_prefix or "data") + ".requires-python", definition={'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, rule='type')
765
- if isinstance(data__requirespython, str):
766
- if not custom_formats["pep508-versionspec"](data__requirespython):
767
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".requires-python must be pep508-versionspec", value=data__requirespython, name="" + (name_prefix or "data") + ".requires-python", definition={'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, rule='format')
768
- if "license" in data_keys:
769
- data_keys.remove("license")
770
- data__license = data["license"]
771
- data__license_one_of_count11 = 0
772
- if data__license_one_of_count11 < 2:
773
- try:
774
- data__license_is_dict = isinstance(data__license, dict)
775
- if data__license_is_dict:
776
- data__license_len = len(data__license)
777
- if not all(prop in data__license for prop in ['file']):
778
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".license must contain ['file'] properties", value=data__license, name="" + (name_prefix or "data") + ".license", definition={'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, rule='required')
779
- data__license_keys = set(data__license.keys())
780
- if "file" in data__license_keys:
781
- data__license_keys.remove("file")
782
- data__license__file = data__license["file"]
783
- if not isinstance(data__license__file, (str)):
784
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".license.file must be string", value=data__license__file, name="" + (name_prefix or "data") + ".license.file", definition={'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}, rule='type')
785
- data__license_one_of_count11 += 1
786
- except JsonSchemaValueException: pass
787
- if data__license_one_of_count11 < 2:
788
- try:
789
- data__license_is_dict = isinstance(data__license, dict)
790
- if data__license_is_dict:
791
- data__license_len = len(data__license)
792
- if not all(prop in data__license for prop in ['text']):
793
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".license must contain ['text'] properties", value=data__license, name="" + (name_prefix or "data") + ".license", definition={'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}, rule='required')
794
- data__license_keys = set(data__license.keys())
795
- if "text" in data__license_keys:
796
- data__license_keys.remove("text")
797
- data__license__text = data__license["text"]
798
- if not isinstance(data__license__text, (str)):
799
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".license.text must be string", value=data__license__text, name="" + (name_prefix or "data") + ".license.text", definition={'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}, rule='type')
800
- data__license_one_of_count11 += 1
801
- except JsonSchemaValueException: pass
802
- if data__license_one_of_count11 != 1:
803
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".license must be valid exactly by one definition" + (" (" + str(data__license_one_of_count11) + " matches found)"), value=data__license, name="" + (name_prefix or "data") + ".license", definition={'description': '`Project license <https://peps.python.org/pep-0621/#license>`_.', 'oneOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}]}, rule='oneOf')
804
- if "authors" in data_keys:
805
- data_keys.remove("authors")
806
- data__authors = data["authors"]
807
- if not isinstance(data__authors, (list, tuple)):
808
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".authors must be array", value=data__authors, name="" + (name_prefix or "data") + ".authors", definition={'type': 'array', 'items': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, '$$description': ["The people or organizations considered to be the 'authors' of the project.", 'The exact meaning is open to interpretation (e.g. original or primary authors,', 'current maintainers, or owners of the package).']}, rule='type')
809
- data__authors_is_list = isinstance(data__authors, (list, tuple))
810
- if data__authors_is_list:
811
- data__authors_len = len(data__authors)
812
- for data__authors_x, data__authors_item in enumerate(data__authors):
813
- validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_author(data__authors_item, custom_formats, (name_prefix or "data") + ".authors[{data__authors_x}]".format(**locals()))
814
- if "maintainers" in data_keys:
815
- data_keys.remove("maintainers")
816
- data__maintainers = data["maintainers"]
817
- if not isinstance(data__maintainers, (list, tuple)):
818
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".maintainers must be array", value=data__maintainers, name="" + (name_prefix or "data") + ".maintainers", definition={'type': 'array', 'items': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, '$$description': ["The people or organizations considered to be the 'maintainers' of the project.", 'Similarly to ``authors``, the exact meaning is open to interpretation.']}, rule='type')
819
- data__maintainers_is_list = isinstance(data__maintainers, (list, tuple))
820
- if data__maintainers_is_list:
821
- data__maintainers_len = len(data__maintainers)
822
- for data__maintainers_x, data__maintainers_item in enumerate(data__maintainers):
823
- validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_author(data__maintainers_item, custom_formats, (name_prefix or "data") + ".maintainers[{data__maintainers_x}]".format(**locals()))
824
- if "keywords" in data_keys:
825
- data_keys.remove("keywords")
826
- data__keywords = data["keywords"]
827
- if not isinstance(data__keywords, (list, tuple)):
828
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".keywords must be array", value=data__keywords, name="" + (name_prefix or "data") + ".keywords", definition={'type': 'array', 'items': {'type': 'string'}, 'description': 'List of keywords to assist searching for the distribution in a larger catalog.'}, rule='type')
829
- data__keywords_is_list = isinstance(data__keywords, (list, tuple))
830
- if data__keywords_is_list:
831
- data__keywords_len = len(data__keywords)
832
- for data__keywords_x, data__keywords_item in enumerate(data__keywords):
833
- if not isinstance(data__keywords_item, (str)):
834
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".keywords[{data__keywords_x}]".format(**locals()) + " must be string", value=data__keywords_item, name="" + (name_prefix or "data") + ".keywords[{data__keywords_x}]".format(**locals()) + "", definition={'type': 'string'}, rule='type')
835
- if "classifiers" in data_keys:
836
- data_keys.remove("classifiers")
837
- data__classifiers = data["classifiers"]
838
- if not isinstance(data__classifiers, (list, tuple)):
839
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".classifiers must be array", value=data__classifiers, name="" + (name_prefix or "data") + ".classifiers", definition={'type': 'array', 'items': {'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, '$$description': ['`Trove classifiers <https://pypi.org/classifiers/>`_', 'which apply to the project.']}, rule='type')
840
- data__classifiers_is_list = isinstance(data__classifiers, (list, tuple))
841
- if data__classifiers_is_list:
842
- data__classifiers_len = len(data__classifiers)
843
- for data__classifiers_x, data__classifiers_item in enumerate(data__classifiers):
844
- if not isinstance(data__classifiers_item, (str)):
845
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".classifiers[{data__classifiers_x}]".format(**locals()) + " must be string", value=data__classifiers_item, name="" + (name_prefix or "data") + ".classifiers[{data__classifiers_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, rule='type')
846
- if isinstance(data__classifiers_item, str):
847
- if not custom_formats["trove-classifier"](data__classifiers_item):
848
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".classifiers[{data__classifiers_x}]".format(**locals()) + " must be trove-classifier", value=data__classifiers_item, name="" + (name_prefix or "data") + ".classifiers[{data__classifiers_x}]".format(**locals()) + "", definition={'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, rule='format')
849
- if "urls" in data_keys:
850
- data_keys.remove("urls")
851
- data__urls = data["urls"]
852
- if not isinstance(data__urls, (dict)):
853
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".urls must be object", value=data__urls, name="" + (name_prefix or "data") + ".urls", definition={'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, rule='type')
854
- data__urls_is_dict = isinstance(data__urls, dict)
855
- if data__urls_is_dict:
856
- data__urls_keys = set(data__urls.keys())
857
- for data__urls_key, data__urls_val in data__urls.items():
858
- if REGEX_PATTERNS['^.+$'].search(data__urls_key):
859
- if data__urls_key in data__urls_keys:
860
- data__urls_keys.remove(data__urls_key)
861
- if not isinstance(data__urls_val, (str)):
862
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".urls.{data__urls_key}".format(**locals()) + " must be string", value=data__urls_val, name="" + (name_prefix or "data") + ".urls.{data__urls_key}".format(**locals()) + "", definition={'type': 'string', 'format': 'url'}, rule='type')
863
- if isinstance(data__urls_val, str):
864
- if not custom_formats["url"](data__urls_val):
865
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".urls.{data__urls_key}".format(**locals()) + " must be url", value=data__urls_val, name="" + (name_prefix or "data") + ".urls.{data__urls_key}".format(**locals()) + "", definition={'type': 'string', 'format': 'url'}, rule='format')
866
- if data__urls_keys:
867
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".urls must not contain "+str(data__urls_keys)+" properties", value=data__urls, name="" + (name_prefix or "data") + ".urls", definition={'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, rule='additionalProperties')
868
- if "scripts" in data_keys:
869
- data_keys.remove("scripts")
870
- data__scripts = data["scripts"]
871
- validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_entry_point_group(data__scripts, custom_formats, (name_prefix or "data") + ".scripts")
872
- if "gui-scripts" in data_keys:
873
- data_keys.remove("gui-scripts")
874
- data__guiscripts = data["gui-scripts"]
875
- validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_entry_point_group(data__guiscripts, custom_formats, (name_prefix or "data") + ".gui-scripts")
876
- if "entry-points" in data_keys:
877
- data_keys.remove("entry-points")
878
- data__entrypoints = data["entry-points"]
879
- data__entrypoints_is_dict = isinstance(data__entrypoints, dict)
880
- if data__entrypoints_is_dict:
881
- data__entrypoints_keys = set(data__entrypoints.keys())
882
- for data__entrypoints_key, data__entrypoints_val in data__entrypoints.items():
883
- if REGEX_PATTERNS['^.+$'].search(data__entrypoints_key):
884
- if data__entrypoints_key in data__entrypoints_keys:
885
- data__entrypoints_keys.remove(data__entrypoints_key)
886
- validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_entry_point_group(data__entrypoints_val, custom_formats, (name_prefix or "data") + ".entry-points.{data__entrypoints_key}".format(**locals()))
887
- if data__entrypoints_keys:
888
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".entry-points must not contain "+str(data__entrypoints_keys)+" properties", value=data__entrypoints, name="" + (name_prefix or "data") + ".entry-points", definition={'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}}}, rule='additionalProperties')
889
- data__entrypoints_len = len(data__entrypoints)
890
- if data__entrypoints_len != 0:
891
- data__entrypoints_property_names = True
892
- for data__entrypoints_key in data__entrypoints:
893
- try:
894
- if isinstance(data__entrypoints_key, str):
895
- if not custom_formats["python-entrypoint-group"](data__entrypoints_key):
896
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".entry-points must be python-entrypoint-group", value=data__entrypoints_key, name="" + (name_prefix or "data") + ".entry-points", definition={'format': 'python-entrypoint-group'}, rule='format')
897
- except JsonSchemaValueException:
898
- data__entrypoints_property_names = False
899
- if not data__entrypoints_property_names:
900
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".entry-points must be named by propertyName definition", value=data__entrypoints, name="" + (name_prefix or "data") + ".entry-points", definition={'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}}}, rule='propertyNames')
901
- if "dependencies" in data_keys:
902
- data_keys.remove("dependencies")
903
- data__dependencies = data["dependencies"]
904
- if not isinstance(data__dependencies, (list, tuple)):
905
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dependencies must be array", value=data__dependencies, name="" + (name_prefix or "data") + ".dependencies", definition={'type': 'array', 'description': 'Project (mandatory) dependencies.', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}, rule='type')
906
- data__dependencies_is_list = isinstance(data__dependencies, (list, tuple))
907
- if data__dependencies_is_list:
908
- data__dependencies_len = len(data__dependencies)
909
- for data__dependencies_x, data__dependencies_item in enumerate(data__dependencies):
910
- validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_dependency(data__dependencies_item, custom_formats, (name_prefix or "data") + ".dependencies[{data__dependencies_x}]".format(**locals()))
911
- if "optional-dependencies" in data_keys:
912
- data_keys.remove("optional-dependencies")
913
- data__optionaldependencies = data["optional-dependencies"]
914
- if not isinstance(data__optionaldependencies, (dict)):
915
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".optional-dependencies must be object", value=data__optionaldependencies, name="" + (name_prefix or "data") + ".optional-dependencies", definition={'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}}, rule='type')
916
- data__optionaldependencies_is_dict = isinstance(data__optionaldependencies, dict)
917
- if data__optionaldependencies_is_dict:
918
- data__optionaldependencies_keys = set(data__optionaldependencies.keys())
919
- for data__optionaldependencies_key, data__optionaldependencies_val in data__optionaldependencies.items():
920
- if REGEX_PATTERNS['^.+$'].search(data__optionaldependencies_key):
921
- if data__optionaldependencies_key in data__optionaldependencies_keys:
922
- data__optionaldependencies_keys.remove(data__optionaldependencies_key)
923
- if not isinstance(data__optionaldependencies_val, (list, tuple)):
924
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".optional-dependencies.{data__optionaldependencies_key}".format(**locals()) + " must be array", value=data__optionaldependencies_val, name="" + (name_prefix or "data") + ".optional-dependencies.{data__optionaldependencies_key}".format(**locals()) + "", definition={'type': 'array', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}, rule='type')
925
- data__optionaldependencies_val_is_list = isinstance(data__optionaldependencies_val, (list, tuple))
926
- if data__optionaldependencies_val_is_list:
927
- data__optionaldependencies_val_len = len(data__optionaldependencies_val)
928
- for data__optionaldependencies_val_x, data__optionaldependencies_val_item in enumerate(data__optionaldependencies_val):
929
- validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_dependency(data__optionaldependencies_val_item, custom_formats, (name_prefix or "data") + ".optional-dependencies.{data__optionaldependencies_key}[{data__optionaldependencies_val_x}]".format(**locals()))
930
- if data__optionaldependencies_keys:
931
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".optional-dependencies must not contain "+str(data__optionaldependencies_keys)+" properties", value=data__optionaldependencies, name="" + (name_prefix or "data") + ".optional-dependencies", definition={'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}}, rule='additionalProperties')
932
- data__optionaldependencies_len = len(data__optionaldependencies)
933
- if data__optionaldependencies_len != 0:
934
- data__optionaldependencies_property_names = True
935
- for data__optionaldependencies_key in data__optionaldependencies:
936
- try:
937
- if isinstance(data__optionaldependencies_key, str):
938
- if not custom_formats["pep508-identifier"](data__optionaldependencies_key):
939
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".optional-dependencies must be pep508-identifier", value=data__optionaldependencies_key, name="" + (name_prefix or "data") + ".optional-dependencies", definition={'format': 'pep508-identifier'}, rule='format')
940
- except JsonSchemaValueException:
941
- data__optionaldependencies_property_names = False
942
- if not data__optionaldependencies_property_names:
943
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".optional-dependencies must be named by propertyName definition", value=data__optionaldependencies, name="" + (name_prefix or "data") + ".optional-dependencies", definition={'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}}, rule='propertyNames')
944
- if "dynamic" in data_keys:
945
- data_keys.remove("dynamic")
946
- data__dynamic = data["dynamic"]
947
- if not isinstance(data__dynamic, (list, tuple)):
948
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic must be array", value=data__dynamic, name="" + (name_prefix or "data") + ".dynamic", definition={'type': 'array', '$$description': ['Specifies which fields are intentionally unspecified and expected to be', 'dynamically provided by build tools'], 'items': {'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}}, rule='type')
949
- data__dynamic_is_list = isinstance(data__dynamic, (list, tuple))
950
- if data__dynamic_is_list:
951
- data__dynamic_len = len(data__dynamic)
952
- for data__dynamic_x, data__dynamic_item in enumerate(data__dynamic):
953
- if data__dynamic_item not in ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']:
954
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic[{data__dynamic_x}]".format(**locals()) + " must be one of ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']", value=data__dynamic_item, name="" + (name_prefix or "data") + ".dynamic[{data__dynamic_x}]".format(**locals()) + "", definition={'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}, rule='enum')
955
- if data_keys:
956
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must not contain "+str(data_keys)+" properties", value=data, name="" + (name_prefix or "data") + "", definition={'$schema': 'http://json-schema.org/draft-07/schema', '$id': 'https://packaging.python.org/en/latest/specifications/declaring-project-metadata/', 'title': 'Package metadata stored in the ``project`` table', '$$description': ['Data structure for the **project** table inside ``pyproject.toml``', '(as initially defined in :pep:`621`)'], 'type': 'object', 'properties': {'name': {'type': 'string', 'description': 'The name (primary identifier) of the project. MUST be statically defined.', 'format': 'pep508-identifier'}, 'version': {'type': 'string', 'description': 'The version of the project as supported by :pep:`440`.', 'format': 'pep440'}, 'description': {'type': 'string', '$$description': ['The `summary description of the project', '<https://packaging.python.org/specifications/core-metadata/#summary>`_']}, 'readme': {'$$description': ['`Full/detailed description of the project in the form of a README', '<https://peps.python.org/pep-0621/#readme>`_', "with meaning similar to the one defined in `core metadata's Description", '<https://packaging.python.org/specifications/core-metadata/#description>`_'], 'oneOf': [{'type': 'string', '$$description': ['Relative path to a text file (UTF-8) containing the full description', 'of the project. If the file path ends in case-insensitive ``.md`` or', '``.rst`` suffixes, then the content-type is respectively', '``text/markdown`` or ``text/x-rst``']}, {'type': 'object', 'allOf': [{'anyOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to a text file containing the full description', 'of the project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', 'description': 'Full text describing the project.'}}, 'required': ['text']}]}, {'properties': {'content-type': {'type': 'string', '$$description': ['Content-type (:rfc:`1341`) of the full description', '(e.g. ``text/markdown``). The ``charset`` parameter is assumed', 'UTF-8 when not present.'], '$comment': 'TODO: add regex pattern or format?'}}, 'required': ['content-type']}]}]}, 'requires-python': {'type': 'string', 'format': 'pep508-versionspec', '$$description': ['`The Python version requirements of the project', '<https://packaging.python.org/specifications/core-metadata/#requires-python>`_.']}, 'license': {'description': '`Project license <https://peps.python.org/pep-0621/#license>`_.', 'oneOf': [{'properties': {'file': {'type': 'string', '$$description': ['Relative path to the file (UTF-8) which contains the license for the', 'project.']}}, 'required': ['file']}, {'properties': {'text': {'type': 'string', '$$description': ['The license of the project whose meaning is that of the', '`License field from the core metadata', '<https://packaging.python.org/specifications/core-metadata/#license>`_.']}}, 'required': ['text']}]}, 'authors': {'type': 'array', 'items': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, '$$description': ["The people or organizations considered to be the 'authors' of the project.", 'The exact meaning is open to interpretation (e.g. original or primary authors,', 'current maintainers, or owners of the package).']}, 'maintainers': {'type': 'array', 'items': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, '$$description': ["The people or organizations considered to be the 'maintainers' of the project.", 'Similarly to ``authors``, the exact meaning is open to interpretation.']}, 'keywords': {'type': 'array', 'items': {'type': 'string'}, 'description': 'List of keywords to assist searching for the distribution in a larger catalog.'}, 'classifiers': {'type': 'array', 'items': {'type': 'string', 'format': 'trove-classifier', 'description': '`PyPI classifier <https://pypi.org/classifiers/>`_.'}, '$$description': ['`Trove classifiers <https://pypi.org/classifiers/>`_', 'which apply to the project.']}, 'urls': {'type': 'object', 'description': 'URLs associated with the project in the form ``label => value``.', 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', 'format': 'url'}}}, 'scripts': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'gui-scripts': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'entry-points': {'$$description': ['Instruct the installer to expose the given modules/functions via', '``entry-point`` discovery mechanism (useful for plugins).', 'More information available in the `Python packaging guide', '<https://packaging.python.org/specifications/entry-points/>`_.'], 'propertyNames': {'format': 'python-entrypoint-group'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}}}, 'dependencies': {'type': 'array', 'description': 'Project (mandatory) dependencies.', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}, 'optional-dependencies': {'type': 'object', 'description': 'Optional dependency for the project', 'propertyNames': {'format': 'pep508-identifier'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'array', 'items': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}}, 'dynamic': {'type': 'array', '$$description': ['Specifies which fields are intentionally unspecified and expected to be', 'dynamically provided by build tools'], 'items': {'enum': ['version', 'description', 'readme', 'requires-python', 'license', 'authors', 'maintainers', 'keywords', 'classifiers', 'urls', 'scripts', 'gui-scripts', 'entry-points', 'dependencies', 'optional-dependencies']}}}, 'required': ['name'], 'additionalProperties': False, 'if': {'not': {'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, '$$comment': ['According to :pep:`621`:', ' If the core metadata specification lists a field as "Required", then', ' the metadata MUST specify the field statically or list it in dynamic', 'In turn, `core metadata`_ defines:', ' The required fields are: Metadata-Version, Name, Version.', ' All the other fields are optional.', 'Since ``Metadata-Version`` is defined by the build back-end, ``name`` and', '``version`` are the only mandatory information in ``pyproject.toml``.', '.. _core metadata: https://packaging.python.org/specifications/core-metadata/']}, 'then': {'required': ['version'], '$$description': ['version should be statically defined in the ``version`` field']}, 'definitions': {'author': {'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, 'entry-point-group': {'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, 'dependency': {'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}}}, rule='additionalProperties')
957
- try:
958
- try:
959
- data_is_dict = isinstance(data, dict)
960
- if data_is_dict:
961
- data_len = len(data)
962
- if not all(prop in data for prop in ['dynamic']):
963
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must contain ['dynamic'] properties", value=data, name="" + (name_prefix or "data") + "", definition={'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, rule='required')
964
- data_keys = set(data.keys())
965
- if "dynamic" in data_keys:
966
- data_keys.remove("dynamic")
967
- data__dynamic = data["dynamic"]
968
- data__dynamic_is_list = isinstance(data__dynamic, (list, tuple))
969
- if data__dynamic_is_list:
970
- data__dynamic_contains = False
971
- for data__dynamic_key in data__dynamic:
972
- try:
973
- if data__dynamic_key != "version":
974
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic must be same as const definition: version", value=data__dynamic_key, name="" + (name_prefix or "data") + ".dynamic", definition={'const': 'version'}, rule='const')
975
- data__dynamic_contains = True
976
- break
977
- except JsonSchemaValueException: pass
978
- if not data__dynamic_contains:
979
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".dynamic must contain one of contains definition", value=data__dynamic, name="" + (name_prefix or "data") + ".dynamic", definition={'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}, rule='contains')
980
- except JsonSchemaValueException: pass
981
- else:
982
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must NOT match a disallowed definition", value=data, name="" + (name_prefix or "data") + "", definition={'not': {'required': ['dynamic'], 'properties': {'dynamic': {'contains': {'const': 'version'}, '$$description': ['version is listed in ``dynamic``']}}}, '$$comment': ['According to :pep:`621`:', ' If the core metadata specification lists a field as "Required", then', ' the metadata MUST specify the field statically or list it in dynamic', 'In turn, `core metadata`_ defines:', ' The required fields are: Metadata-Version, Name, Version.', ' All the other fields are optional.', 'Since ``Metadata-Version`` is defined by the build back-end, ``name`` and', '``version`` are the only mandatory information in ``pyproject.toml``.', '.. _core metadata: https://packaging.python.org/specifications/core-metadata/']}, rule='not')
983
- except JsonSchemaValueException:
984
- pass
985
- else:
986
- data_is_dict = isinstance(data, dict)
987
- if data_is_dict:
988
- data_len = len(data)
989
- if not all(prop in data for prop in ['version']):
990
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must contain ['version'] properties", value=data, name="" + (name_prefix or "data") + "", definition={'required': ['version'], '$$description': ['version should be statically defined in the ``version`` field']}, rule='required')
991
- return data
992
-
993
- def validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_dependency(data, custom_formats={}, name_prefix=None):
994
- if not isinstance(data, (str)):
995
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be string", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}, rule='type')
996
- if isinstance(data, str):
997
- if not custom_formats["pep508"](data):
998
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be pep508", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/dependency', 'title': 'Dependency', 'type': 'string', 'description': 'Project dependency specification according to PEP 508', 'format': 'pep508'}, rule='format')
999
- return data
1000
-
1001
- def validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_entry_point_group(data, custom_formats={}, name_prefix=None):
1002
- if not isinstance(data, (dict)):
1003
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, rule='type')
1004
- data_is_dict = isinstance(data, dict)
1005
- if data_is_dict:
1006
- data_keys = set(data.keys())
1007
- for data_key, data_val in data.items():
1008
- if REGEX_PATTERNS['^.+$'].search(data_key):
1009
- if data_key in data_keys:
1010
- data_keys.remove(data_key)
1011
- if not isinstance(data_val, (str)):
1012
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".{data_key}".format(**locals()) + " must be string", value=data_val, name="" + (name_prefix or "data") + ".{data_key}".format(**locals()) + "", definition={'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}, rule='type')
1013
- if isinstance(data_val, str):
1014
- if not custom_formats["python-entrypoint-reference"](data_val):
1015
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".{data_key}".format(**locals()) + " must be python-entrypoint-reference", value=data_val, name="" + (name_prefix or "data") + ".{data_key}".format(**locals()) + "", definition={'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}, rule='format')
1016
- if data_keys:
1017
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must not contain "+str(data_keys)+" properties", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, rule='additionalProperties')
1018
- data_len = len(data)
1019
- if data_len != 0:
1020
- data_property_names = True
1021
- for data_key in data:
1022
- try:
1023
- if isinstance(data_key, str):
1024
- if not custom_formats["python-entrypoint-name"](data_key):
1025
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be python-entrypoint-name", value=data_key, name="" + (name_prefix or "data") + "", definition={'format': 'python-entrypoint-name'}, rule='format')
1026
- except JsonSchemaValueException:
1027
- data_property_names = False
1028
- if not data_property_names:
1029
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be named by propertyName definition", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/entry-point-group', 'title': 'Entry-points', 'type': 'object', '$$description': ['Entry-points are grouped together to indicate what sort of capabilities they', 'provide.', 'See the `packaging guides', '<https://packaging.python.org/specifications/entry-points/>`_', 'and `setuptools docs', '<https://setuptools.pypa.io/en/latest/userguide/entry_point.html>`_', 'for more information.'], 'propertyNames': {'format': 'python-entrypoint-name'}, 'additionalProperties': False, 'patternProperties': {'^.+$': {'type': 'string', '$$description': ['Reference to a Python object. It is either in the form', '``importable.module``, or ``importable.module:object.attr``.'], 'format': 'python-entrypoint-reference', '$comment': 'https://packaging.python.org/specifications/entry-points/'}}}, rule='propertyNames')
1030
- return data
1031
-
1032
- def validate_https___packaging_python_org_en_latest_specifications_declaring_project_metadata___definitions_author(data, custom_formats={}, name_prefix=None):
1033
- if not isinstance(data, (dict)):
1034
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must be object", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, rule='type')
1035
- data_is_dict = isinstance(data, dict)
1036
- if data_is_dict:
1037
- data_keys = set(data.keys())
1038
- if "name" in data_keys:
1039
- data_keys.remove("name")
1040
- data__name = data["name"]
1041
- if not isinstance(data__name, (str)):
1042
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".name must be string", value=data__name, name="" + (name_prefix or "data") + ".name", definition={'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, rule='type')
1043
- if "email" in data_keys:
1044
- data_keys.remove("email")
1045
- data__email = data["email"]
1046
- if not isinstance(data__email, (str)):
1047
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".email must be string", value=data__email, name="" + (name_prefix or "data") + ".email", definition={'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}, rule='type')
1048
- if isinstance(data__email, str):
1049
- if not REGEX_PATTERNS["idn-email_re_pattern"].match(data__email):
1050
- raise JsonSchemaValueException("" + (name_prefix or "data") + ".email must be idn-email", value=data__email, name="" + (name_prefix or "data") + ".email", definition={'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}, rule='format')
1051
- if data_keys:
1052
- raise JsonSchemaValueException("" + (name_prefix or "data") + " must not contain "+str(data_keys)+" properties", value=data, name="" + (name_prefix or "data") + "", definition={'$id': '#/definitions/author', 'title': 'Author or Maintainer', '$comment': 'https://peps.python.org/pep-0621/#authors-maintainers', 'type': 'object', 'additionalProperties': False, 'properties': {'name': {'type': 'string', '$$description': ['MUST be a valid email name, i.e. whatever can be put as a name, before an', 'email, in :rfc:`822`.']}, 'email': {'type': 'string', 'format': 'idn-email', 'description': 'MUST be a valid email address'}}}, rule='additionalProperties')
1053
- return data