nova-bridgeye 0.1.1 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.venv_build/Lib/site-packages/PyInstaller/__init__.py +64 -0
- package/.venv_build/Lib/site-packages/PyInstaller/__main__.py +308 -0
- package/.venv_build/Lib/site-packages/PyInstaller/_recursion_too_deep_message.py +45 -0
- package/.venv_build/Lib/site-packages/PyInstaller/_shared_with_waf.py +86 -0
- package/.venv_build/Lib/site-packages/PyInstaller/archive/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/archive/pyz_crypto.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/archive/readers.py +227 -0
- package/.venv_build/Lib/site-packages/PyInstaller/archive/writers.py +423 -0
- package/.venv_build/Lib/site-packages/PyInstaller/bootloader/Windows-64bit-intel/run.exe +0 -0
- package/.venv_build/Lib/site-packages/PyInstaller/bootloader/Windows-64bit-intel/run_d.exe +0 -0
- package/.venv_build/Lib/site-packages/PyInstaller/bootloader/Windows-64bit-intel/runw.exe +0 -0
- package/.venv_build/Lib/site-packages/PyInstaller/bootloader/Windows-64bit-intel/runw_d.exe +0 -0
- package/.venv_build/Lib/site-packages/PyInstaller/bootloader/images/icon-console.ico +0 -0
- package/.venv_build/Lib/site-packages/PyInstaller/bootloader/images/icon-windowed.ico +0 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/api.py +1309 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/build_main.py +1227 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/datastruct.py +459 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/icon.py +90 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/makespec.py +905 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/osx.py +723 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/splash.py +442 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/splash_templates.py +229 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/templates.py +126 -0
- package/.venv_build/Lib/site-packages/PyInstaller/building/utils.py +805 -0
- package/.venv_build/Lib/site-packages/PyInstaller/compat.py +764 -0
- package/.venv_build/Lib/site-packages/PyInstaller/config.py +56 -0
- package/.venv_build/Lib/site-packages/PyInstaller/configure.py +107 -0
- package/.venv_build/Lib/site-packages/PyInstaller/depend/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/depend/analysis.py +1002 -0
- package/.venv_build/Lib/site-packages/PyInstaller/depend/bindepend.py +920 -0
- package/.venv_build/Lib/site-packages/PyInstaller/depend/bytecode.py +337 -0
- package/.venv_build/Lib/site-packages/PyInstaller/depend/dylib.py +383 -0
- package/.venv_build/Lib/site-packages/PyInstaller/depend/imphook.py +542 -0
- package/.venv_build/Lib/site-packages/PyInstaller/depend/imphookapi.py +475 -0
- package/.venv_build/Lib/site-packages/PyInstaller/depend/utils.py +396 -0
- package/.venv_build/Lib/site-packages/PyInstaller/exceptions.py +82 -0
- package/.venv_build/Lib/site-packages/PyInstaller/fake-modules/_pyi_rth_utils/__init__.py +34 -0
- package/.venv_build/Lib/site-packages/PyInstaller/fake-modules/_pyi_rth_utils/_win32.py +333 -0
- package/.venv_build/Lib/site-packages/PyInstaller/fake-modules/_pyi_rth_utils/qt.py +118 -0
- package/.venv_build/Lib/site-packages/PyInstaller/fake-modules/_pyi_rth_utils/tempfile.py +56 -0
- package/.venv_build/Lib/site-packages/PyInstaller/fake-modules/pyi_splash.py +211 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PIL.Image.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PIL.ImageFilter.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PIL.SpiderImagePlugin.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PIL.py +21 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QAxContainer.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qsci.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt.py +29 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DAnimation.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DCore.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DExtras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DInput.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DLogic.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.Qt3DRender.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtBluetooth.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtChart.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtCore.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDBus.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDataVisualization.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtDesigner.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtGui.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtHelp.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtLocation.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMacExtras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMultimedia.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtMultimediaWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetwork.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNetworkAuth.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtNfc.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtOpenGL.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPositioning.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPrintSupport.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtPurchasing.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQml.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuick3D.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtQuickWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtRemoteObjects.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtScript.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSensors.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSerialPort.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSql.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtSvg.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtTest.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtTextToSpeech.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebChannel.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngine.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngineCore.py +22 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebEngineWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKit.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebKitWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWebSockets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtWinExtras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtX11Extras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtXml.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.QtXmlPatterns.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.py +29 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt5.uic.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QAxContainer.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qsci.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DAnimation.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DCore.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DExtras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DInput.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DLogic.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.Qt3DRender.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtBluetooth.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtCharts.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtCore.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDBus.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDataVisualization.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtDesigner.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtGui.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtHelp.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtMultimedia.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtMultimediaWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetwork.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNetworkAuth.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtNfc.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGL.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtOpenGLWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdf.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPdfWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPositioning.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtPrintSupport.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQml.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuick3D.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtQuickWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtRemoteObjects.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSensors.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSerialPort.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSpatialAudio.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSql.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvg.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtSvgWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtTest.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtTextToSpeech.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebChannel.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineCore.py +27 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineQuick.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebEngineWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWebSockets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.QtXml.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.py +26 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PyQt6.uic.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DAnimation.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DCore.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DExtras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DInput.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DLogic.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qt3DRender.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtAxContainer.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtCharts.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtConcurrent.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtCore.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtDataVisualization.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtGui.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtHelp.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtLocation.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMacExtras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMultimedia.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtMultimediaWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtNetwork.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtOpenGL.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtOpenGLFunctions.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtPositioning.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtPrintSupport.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQml.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuick.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuickControls2.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtQuickWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtRemoteObjects.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScript.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScriptTools.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtScxml.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSensors.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSerialPort.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSql.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtSvg.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtTest.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtTextToSpeech.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtUiTools.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebChannel.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngine.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngineCore.py +22 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebEngineWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebKit.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebKitWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWebSockets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtWinExtras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtX11Extras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtXml.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.QtXmlPatterns.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.Qwt5.py +31 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide2.py +25 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DAnimation.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DCore.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DExtras.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DInput.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DLogic.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.Qt3DRender.py +20 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtAxContainer.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtBluetooth.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtCharts.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtConcurrent.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtCore.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDBus.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDataVisualization.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtDesigner.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtGraphs.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtGui.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtHelp.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtHttpServer.py +18 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtLocation.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtMultimedia.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtMultimediaWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNetwork.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNetworkAuth.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtNfc.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtOpenGL.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtOpenGLWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPdf.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPdfWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPositioning.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtPrintSupport.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQml.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuick.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuick3D.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuickControls2.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtQuickWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtRemoteObjects.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtScxml.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSensors.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSerialBus.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSerialPort.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSpatialAudio.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSql.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtStateMachine.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSvg.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtSvgWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtTest.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtTextToSpeech.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtUiTools.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebChannel.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineCore.py +29 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineQuick.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebEngineWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWebSockets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtWidgets.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.QtXml.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-PySide6.py +28 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-_pyi_rth_utils.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-_tkinter.py +22 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-babel.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-difflib.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-distutils.command.check.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-distutils.py +33 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-distutils.util.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.contrib.sessions.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.core.cache.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.core.mail.py +25 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.core.management.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.mysql.base.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.oracle.base.py +12 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.db.backends.py +25 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.py +92 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-django.template.loaders.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-encodings.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gevent.py +24 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.py +12 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Adw.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.AppIndicator3.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Atk.py +29 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.AyatanaAppIndicator3.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Champlain.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Clutter.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.DBus.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GIRepository.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GLib.py +42 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GModule.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GObject.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gdk.py +36 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GdkPixbuf.py +150 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gio.py +63 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Graphene.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gsk.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gst.py +93 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstAllocators.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstApp.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstAudio.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstBadAudio.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstBase.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstCheck.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstCodecs.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstController.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGL.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLEGL.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLWayland.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstGLX11.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstInsertBin.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstMpegts.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstNet.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPbutils.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPlay.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstPlayer.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtp.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtsp.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstRtspServer.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstSdp.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstTag.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstTranscoder.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVideo.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkan.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkanWayland.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstVulkanXCB.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GstWebRTC.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Gtk.py +59 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkChamplain.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkClutter.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkSource.py +31 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.GtkosxApplication.py +18 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.HarfBuzz.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.Pango.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.PangoCairo.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.cairo.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.freetype2.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-gi.repository.xlib.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-heapq.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-idlelib.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-importlib_metadata.py +24 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-importlib_resources.py +22 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-keyring.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-kivy.py +25 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-lib2to3.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.backends.backend_qtagg.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.backends.backend_qtcairo.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.backends.py +226 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.backends.qt_compat.py +26 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.numerix.py +21 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-matplotlib.py +38 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-multiprocessing.util.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-numpy.py +59 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-packaging.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pandas.io.clipboard.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pandas.io.formats.style.py +18 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pandas.plotting.py +18 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pandas.py +20 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pickle.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pkg_resources.py +68 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-platform.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pygments.py +29 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pytz.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-pytzdata.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-qtawesome.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-qtpy.py +25 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scapy.layers.all.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scipy.io.matlab.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scipy.linalg.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scipy.py +52 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scipy.sparse.csgraph.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scipy.spatial.transform.rotation.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scipy.special._ellip_harm_2.py +30 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scipy.special._ufuncs.py +25 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scipy.stats._stats.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-scrapy.py +18 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-setuptools.py +63 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-shelve.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-shiboken6.py +17 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-sphinx.py +41 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-sqlalchemy.py +88 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-sqlite3.py +19 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-sysconfig.py +29 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-wcwidth.py +14 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-win32ctypes.core.py +22 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-xml.dom.domreg.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-xml.etree.cElementTree.py +13 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-xml.py +12 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/hook-zope.interface.py +12 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-PyQt5.uic.port_v2.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-_pyi_rth_utils.py +25 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-distutils.py +46 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_find_module_path/hook-pyi_splash.py +36 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-autocommand.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-backports.tarfile.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-distutils.py +23 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.py +37 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Adw.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.AppIndicator3.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Atk.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.AyatanaAppIndicator3.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Champlain.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Clutter.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.DBus.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GIRepository.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GLib.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GModule.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GObject.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gdk.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GdkPixbuf.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gio.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Graphene.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gsk.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gst.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAllocators.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstApp.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstAudio.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBadAudio.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstBase.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstCheck.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstCodecs.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstController.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGL.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLEGL.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLWayland.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstGLX11.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstInsertBin.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstMpegts.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstNet.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPbutils.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPlay.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstPlayer.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtp.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtsp.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstRtspServer.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstSdp.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTag.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstTranscoder.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVideo.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkan.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkanWayland.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstVulkanXCB.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GstWebRTC.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Gtk.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkChamplain.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkClutter.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkSource.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.GtkosxApplication.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.HarfBuzz.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.Pango.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.PangoCairo.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.cairo.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.freetype2.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-gi.repository.xlib.py +16 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-importlib_metadata.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-importlib_resources.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-inflect.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-jaraco.context.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-jaraco.functools.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-jaraco.text.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-more_itertools.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-ordered_set.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-packaging.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-platformdirs.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-setuptools.extern.six.moves.py +39 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-six.moves.py +62 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-tomli.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-typeguard.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-typing_extensions.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-urllib3.packages.six.moves.py +34 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-wheel.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/pre_safe_import_module/hook-zipp.py +15 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth__tkinter.py +37 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_django.py +34 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gdkpixbuf.py +41 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gi.py +21 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gio.py +21 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_glib.py +37 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gstreamer.py +32 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_gtk.py +27 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_inspect.py +53 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_kivy.py +24 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_mplconfig.py +46 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_multiprocessing.py +55 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgres.py +171 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pkgutil.py +64 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt5.py +68 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyqt6.py +70 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside2.py +63 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_pyside6.py +69 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks/pyi_rth_setuptools.py +37 -0
- package/.venv_build/Lib/site-packages/PyInstaller/hooks/rthooks.dat +23 -0
- package/.venv_build/Lib/site-packages/PyInstaller/isolated/__init__.py +31 -0
- package/.venv_build/Lib/site-packages/PyInstaller/isolated/_child.py +101 -0
- package/.venv_build/Lib/site-packages/PyInstaller/isolated/_parent.py +437 -0
- package/.venv_build/Lib/site-packages/PyInstaller/lib/README.rst +49 -0
- package/.venv_build/Lib/site-packages/PyInstaller/lib/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/lib/modulegraph/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/lib/modulegraph/__main__.py +89 -0
- package/.venv_build/Lib/site-packages/PyInstaller/lib/modulegraph/find_modules.py +61 -0
- package/.venv_build/Lib/site-packages/PyInstaller/lib/modulegraph/modulegraph.py +3061 -0
- package/.venv_build/Lib/site-packages/PyInstaller/lib/modulegraph/util.py +21 -0
- package/.venv_build/Lib/site-packages/PyInstaller/loader/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/loader/pyiboot01_bootstrap.py +95 -0
- package/.venv_build/Lib/site-packages/PyInstaller/loader/pyimod01_archive.py +135 -0
- package/.venv_build/Lib/site-packages/PyInstaller/loader/pyimod02_importers.py +696 -0
- package/.venv_build/Lib/site-packages/PyInstaller/loader/pyimod03_ctypes.py +131 -0
- package/.venv_build/Lib/site-packages/PyInstaller/loader/pyimod04_pywin32.py +56 -0
- package/.venv_build/Lib/site-packages/PyInstaller/log.py +64 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/_gitrevision.py +10 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/cliutils/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/cliutils/archive_viewer.py +268 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/cliutils/bindepend.py +58 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/cliutils/grab_version.py +59 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/cliutils/makespec.py +61 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/cliutils/set_version.py +51 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/conftest.py +587 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/git.py +59 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/hooks/__init__.py +1335 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/hooks/conda.py +396 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/hooks/django.py +152 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/hooks/gi.py +426 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/hooks/qt/__init__.py +1424 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/hooks/qt/_modules_info.py +450 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/hooks/setuptools.py +247 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/hooks/tcl_tk.py +340 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/misc.py +229 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/osx.py +690 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/run_tests.py +70 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/tests.py +152 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/win32/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/win32/icon.py +251 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/win32/versioninfo.py +605 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/win32/winmanifest.py +244 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/win32/winresource.py +189 -0
- package/.venv_build/Lib/site-packages/PyInstaller/utils/win32/winutils.py +257 -0
- package/.venv_build/Lib/site-packages/_distutils_hack/__init__.py +222 -0
- package/.venv_build/Lib/site-packages/_distutils_hack/override.py +1 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/__init__.py +47 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/compat.py +42 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/pre_find_module_path/__init__.py +11 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/pre_safe_import_module/__init__.py +11 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/pre_safe_import_module/hook-tensorflow.py +28 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/pre_safe_import_module/hook-win32com.py +50 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/__init__.py +10 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_cryptography_openssl.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_enchant.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_ffpyplayer.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_findlibs.py +58 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_nltk.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_osgeo.py +32 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_pygraphviz.py +32 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_pyproj.py +26 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_pyqtgraph_multiprocess.py +52 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_pythoncom.py +24 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_pywintypes.py +24 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_tensorflow.py +53 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_traitlets.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks/pyi_rth_usb.py +85 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/rthooks.dat +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/__init__.py +11 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-BTrees.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-CTkMessagebox.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-Crypto.py +62 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-Cryptodome.py +44 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-HtmlTestRunner.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-IPython.py +42 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-OpenGL.py +42 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-OpenGL_accelerate.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-PyTaskbar.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-Xlib.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-_mssql.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-_mysql.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-accessible_output2.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-adbutils.py +23 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-adios.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-afmformats.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-aliyunsdkcore.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-altair.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-amazonproduct.py +26 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-anyio.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-apkutils.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-appdirs.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-appy.pod.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-apscheduler.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-argon2.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-astor.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-astroid.py +48 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-astropy.py +42 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-astropy_iers_data.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-av.py +44 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-avro.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-azurerm.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-backports.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-backports.zoneinfo.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-bacon.py +50 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-bcrypt.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-bitsandbytes.py +23 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-black.py +29 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-bleak.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-blib2to3.py +26 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-blspy.py +35 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-bokeh.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-boto.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-boto3.py +29 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-botocore.py +30 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-branca.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cairocffi.py +45 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cairosvg.py +40 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-capstone.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cassandra.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-celpy.py +24 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-certifi.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cf_units.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cftime.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-charset_normalizer.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cloudpickle.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cloudscraper.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-clr.py +55 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-clr_loader.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cmocean.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-compliance_checker.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-comtypes.client.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-countrycode.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-countryinfo.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cryptography.py +132 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cumm.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-customtkinter.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cv2.py +168 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cx_Oracle.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-cytoolz.itertoolz.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dash.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dash_bootstrap_components.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dash_core_components.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dash_html_components.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dash_renderer.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dash_table.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dash_uploader.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dask.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-datasets.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dateparser.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dateparser.utils.strptime.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dateutil.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dbus_fast.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dclab.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ddgs.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-detectron2.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-discid.py +40 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-distorm3.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-distributed.py +29 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dns.rdata.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-docutils.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-docx.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-docx2pdf.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-duckdb.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-dynaconf.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-easyocr.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eccodeslib.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eckitlib.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eel.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-emoji.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-enchant.py +69 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eng_to_ipa.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ens.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-enzyme.parsers.ebml.core.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_abi.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_account.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_hash.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_keyfile.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_keys.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_rlp.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_typing.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_utils.network.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-eth_utils.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-exchangelib.py +12 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fabric.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fairscale.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fake_useragent.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-faker.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-falcon.py +41 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fastai.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fastparquet.py +32 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fckitlib.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ffpyplayer.py +28 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fiona.py +26 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-flask_compress.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-flask_restx.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-flex.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-flirpy.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fmpy.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-folium.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-freetype.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-frictionless.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fsspec.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-fvcore.nn.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gadfly.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gbulb.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gcloud.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-geopandas.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gitlab.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-globus_sdk.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gmplot.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gmsh.py +28 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gooey.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-google.api_core.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-google.cloud.bigquery.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-google.cloud.core.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-google.cloud.kms_v1.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-google.cloud.pubsub_v1.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-google.cloud.speech.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-google.cloud.storage.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-google.cloud.translate.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-googleapiclient.model.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-grapheme.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-graphql_query.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-great_expectations.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gribapi.py +89 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-grpc.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-gtk.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-h3.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-h5py.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-hdf5plugin.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-hexbytes.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-httplib2.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-humanize.py +23 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-hydra.py +36 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ijson.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-imageio.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-imageio_ffmpeg.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-iminuit.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-intake.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-iso639.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-itk.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jaraco.text.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jedi.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jieba.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jinja2.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jinxed.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jira.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jsonpath_rw_ext.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jsonrpcserver.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jsonschema.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jsonschema_specifications.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-jupyterlab.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-kaleido.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-khmernltk.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-kinterbasdb.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-langchain.py +45 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-langchain_classic.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-langcodes.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-langdetect.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-laonlp.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lark.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ldfparser.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lensfunpy.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-libaudioverse.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-librosa.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lightgbm.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lightning.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-limits.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-linear_operator.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lingua.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-litestar.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-llvmlite.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-logilab.py +26 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lxml.etree.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lxml.isoschematron.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lxml.objectify.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lxml.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-lz4.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-magic.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-mako.codegen.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-mariadb.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-markdown.py +28 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-mecab.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-metpy.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-migrate.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-mimesis.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-minecraft_launcher_lib.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-mistune.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-mnemonic.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-monai.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-moviepy.audio.fx.all.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-moviepy.video.fx.all.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-mpl_toolkits.basemap.py +36 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-msoffcrypto.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nacl.py +30 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-names.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nanite.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-narwhals.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nbconvert.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nbdime.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nbformat.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nbt.py +12 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ncclient.py +23 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-netCDF4.py +37 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nicegui.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-niquests.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nltk.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nnpy.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-notebook.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-numba.py +55 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-numbers_parser.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-numcodecs.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cublas.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cuda_cupti.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cuda_nvcc.py +30 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cuda_nvrtc.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cuda_runtime.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cudnn.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cufft.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.curand.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cusolver.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.cusparse.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.nccl.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.nvjitlink.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-nvidia.nvtx.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-office365.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-onnxruntime.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-opencc.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-openpyxl.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-opentelemetry.py +41 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-orjson.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-osgeo.py +81 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pandas_flavor.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-panel.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-parsedatetime.py +29 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-parso.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-passlib.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-paste.exceptions.reporter.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-patoolib.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-patsy.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pdfminer.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pendulum.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-phonenumbers.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pingouin.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pint.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pinyin.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-platformdirs.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-plotly.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pointcept.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pptx.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-prettytable.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-psutil.py +50 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-psychopy.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-psycopg2.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-psycopg_binary.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-publicsuffix2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pubsub.core.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-puremagic.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-py.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyarrow.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pycountry.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pycparser.py +23 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pycrfsuite.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pydantic.py +49 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pydicom.py +69 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pydivert.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyecharts.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel-io.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel-ods.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel-ods3.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel-odsr.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel-xls.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel-xlsx.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel-xlsxw.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel.py +29 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel_io.py +26 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel_ods.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel_ods3.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel_odsr.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel_xls.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel_xlsx.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcel_xlsxw.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyexcelerate.Writer.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pygraphviz.py +145 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pygwalker.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pylibmagic.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pylint.py +75 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pylsl.py +42 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pymediainfo.py +44 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pymeshlab.py +41 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pymorphy3.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pymssql.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pynng.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pynput.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyodbc.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyopencl.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pypdfium2.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pypdfium2_raw.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pypemicro.py +43 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyphen.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyppeteer.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyproj.py +72 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pypsexec.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pypylon.py +48 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyqtgraph.py +56 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyshark.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pysnmp.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pystray.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pytest.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pythainlp.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pythoncom.py +31 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pytokens.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyttsx.py +23 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyttsx3.py +30 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyviz_comms.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pyvjoy.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pywintypes.py +31 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-pywt.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-qtmodern.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-radicale.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-raven.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-rawpy.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-rdflib.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-redmine.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-regex.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-reportlab.lib.utils.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-reportlab.pdfbase._fontdata.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-resampy.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-rlp.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-rpy2.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-rtree.py +46 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ruamel.yaml.py +39 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-rubicon.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sacremoses.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sam2.py +30 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-saml2.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-schwifty.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-seedir.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-selectolax.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-selenium.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sentry_sdk.py +39 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-setuptools_scm.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-shapely.py +105 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-shotgun_api3.py +23 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-simplemma.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.color.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.data.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.draw.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.exposure.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.feature.py +26 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.filters.py +24 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.future.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.graph.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.io.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.measure.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.metrics.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.morphology.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.registration.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.restoration.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.segmentation.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skimage.transform.py +24 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.cluster.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.externals.array_api_compat.cupy.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.externals.array_api_compat.dask.array.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.externals.array_api_compat.numpy.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.externals.array_api_compat.torch.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.linear_model.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.metrics.cluster.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.metrics.pairwise.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.metrics.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.neighbors.py +41 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.tree.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sklearn.utils.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-skyfield.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-slixmpp.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sound_lib.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sounddevice.py +62 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-soundfile.py +62 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-spacy.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-speech_recognition.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-spiceypy.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-spnego.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-srsly.msgpack._packer.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sspilib.raw.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-statsmodels.tsa.statespace.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-stdnum.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-storm.database.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sudachipy.py +30 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sunpy.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-sv_ttk.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-swagger_spec_validator.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tableauhyperapi.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tables.py +30 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tcod.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tensorflow.py +188 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-text_unidecode.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-textdistance.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-thinc.backends.numpy_ops.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-thinc.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-timezonefinder.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-timm.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tinycss2.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tkinterdnd2.py +90 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tkinterweb.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tkinterweb_tkhtml.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tkinterweb_tkhtml_extras.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-toga.py +44 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-toga_cocoa.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-toga_gtk.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-toga_winforms.py +40 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-torch.py +179 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-torchao.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-torchaudio.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-torchtext.py +21 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-torchvision.io.image.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-torchvision.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_client.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_code.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_components.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_datagrid.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_deckgl.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_formkit.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_grid.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_iframe.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_keycloak.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_leaflet.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_markdown.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_matplotlib.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_mesh_streamer.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_plotly.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_pvui.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_quasar.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_rca.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_router.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_simput.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_tauri.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_tweakpane.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_vega.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_vtk.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_vtk3d.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_vtklocal.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_vuetify.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trame_xterm.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-transformers.py +37 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-travertino.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-trimesh.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-triton.py +47 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ttkthemes.py +56 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ttkwidgets.py +38 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tzdata.py +22 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-tzwhere.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-u1db.py +31 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-ultralytics.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-umap.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-unidecode.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-uniseg.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-urllib3.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-urllib3_future.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-usb.py +91 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-uuid6.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-uvicorn.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-uvloop.py +19 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vaderSentiment.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkAcceleratorsVTKmCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkAcceleratorsVTKmDataModel.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkAcceleratorsVTKmFilters.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkChartsCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonColor.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonComputationalGeometry.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonDataModel.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonExecutionModel.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonMath.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonMisc.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonPython.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonSystem.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkCommonTransforms.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkDomainsChemistry.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkDomainsChemistryOpenGL2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersAMR.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersCellGrid.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersExtraction.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersFlowPaths.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersGeneral.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersGeneric.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersGeometry.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersGeometryPreview.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersHybrid.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersHyperTree.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersImaging.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersModeling.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersParallel.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersParallelDIY2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersParallelImaging.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersParallelStatistics.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersPoints.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersProgrammable.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersPython.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersReduction.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersSMP.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersSelection.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersSources.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersStatistics.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersTemporal.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersTensor.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersTexture.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersTopology.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkFiltersVerdict.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkGeovisCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOAMR.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOAsynchronous.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOAvmesh.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOCGNSReader.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOCONVERGECFD.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOCellGrid.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOCesium3DTiles.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOChemistry.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOCityGML.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOERF.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOEnSight.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOEngys.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOExodus.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOExport.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOExportGL2PS.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOExportPDF.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOFDS.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOFLUENTCFF.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOGeoJSON.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOGeometry.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOH5Rage.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOH5part.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOHDF.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOIOSS.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOImage.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOImport.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOInfovis.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOLANLX3D.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOLSDyna.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOLegacy.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOMINC.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOMotionFX.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOMovie.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIONetCDF.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOOMF.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOOggTheora.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOPIO.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOPLY.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOParallel.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOParallelExodus.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOParallelLSDyna.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOParallelXML.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOSQL.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOSegY.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOTRUCHAS.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOTecplotTable.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOVPIC.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOVeraOut.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOVideo.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOXML.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOXMLParser.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkIOXdmf2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingColor.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingFourier.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingGeneral.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingHybrid.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingMath.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingMorphological.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingOpenGL2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingSources.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingStatistics.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkImagingStencil.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkInfovisCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkInfovisLayout.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkInteractionImage.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkInteractionStyle.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkInteractionWidgets.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkParallelCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkPythonContext2D.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingAnnotation.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingCellGrid.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingContext2D.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingContextOpenGL2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingExternal.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingFreeType.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingGL2PSOpenGL2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingGridAxes.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingHyperTreeGrid.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingImage.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingLICOpenGL2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingLOD.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingLabel.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingMatplotlib.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingOpenGL2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingParallel.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingSceneGraph.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingUI.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingVR.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingVRModels.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingVolume.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingVolumeAMR.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingVolumeOpenGL2.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkRenderingVtkJS.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkSerializationManager.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkTestingRendering.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkTestingSerialization.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkViewsContext2D.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkViewsCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkViewsInfovis.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkWebCore.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkmodules.vtkWebGLExporter.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-vtkpython.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-wavefile.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-weasyprint.py +85 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-web3.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-webassets.py +14 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-webrtcvad.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-websockets.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-webview.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-win32com.py +20 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-wordcloud.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-workflow.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-wx.lib.activex.py +27 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-wx.lib.pubsub.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-wx.xrc.py +13 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-xarray.py +30 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-xml.dom.html.HTMLDocument.py +67 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-xml.sax.saxexts.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-xmldiff.py +16 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-xmlschema.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-xsge_gui.py +17 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-xyzservices.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-yapf_third_party.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-z3c.rml.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-zarr.py +15 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-zeep.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-zmq.py +63 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/stdhooks/hook-zoneinfo.py +18 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/utils/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/utils/mypy.py +25 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/utils/nvidia_cuda.py +77 -0
- package/.venv_build/Lib/site-packages/_pyinstaller_hooks_contrib/utils/vtkmodules.py +604 -0
- package/.venv_build/Lib/site-packages/altgraph/Dot.py +321 -0
- package/.venv_build/Lib/site-packages/altgraph/Graph.py +682 -0
- package/.venv_build/Lib/site-packages/altgraph/GraphAlgo.py +171 -0
- package/.venv_build/Lib/site-packages/altgraph/GraphStat.py +73 -0
- package/.venv_build/Lib/site-packages/altgraph/GraphUtil.py +139 -0
- package/.venv_build/Lib/site-packages/altgraph/ObjectGraph.py +212 -0
- package/.venv_build/Lib/site-packages/altgraph/__init__.py +146 -0
- package/.venv_build/Lib/site-packages/altgraph-0.17.5.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/altgraph-0.17.5.dist-info/LICENSE +18 -0
- package/.venv_build/Lib/site-packages/altgraph-0.17.5.dist-info/METADATA +307 -0
- package/.venv_build/Lib/site-packages/altgraph-0.17.5.dist-info/RECORD +21 -0
- package/.venv_build/Lib/site-packages/altgraph-0.17.5.dist-info/WHEEL +6 -0
- package/.venv_build/Lib/site-packages/altgraph-0.17.5.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/altgraph-0.17.5.dist-info/zip-safe +1 -0
- package/.venv_build/Lib/site-packages/certifi/__init__.py +4 -0
- package/.venv_build/Lib/site-packages/certifi/__main__.py +12 -0
- package/.venv_build/Lib/site-packages/certifi/cacert.pem +4468 -0
- package/.venv_build/Lib/site-packages/certifi/core.py +83 -0
- package/.venv_build/Lib/site-packages/certifi/py.typed +0 -0
- package/.venv_build/Lib/site-packages/certifi-2026.1.4.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/certifi-2026.1.4.dist-info/METADATA +78 -0
- package/.venv_build/Lib/site-packages/certifi-2026.1.4.dist-info/RECORD +14 -0
- package/.venv_build/Lib/site-packages/certifi-2026.1.4.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/certifi-2026.1.4.dist-info/licenses/LICENSE +20 -0
- package/.venv_build/Lib/site-packages/certifi-2026.1.4.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/__init__.py +48 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/__main__.py +6 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/api.py +669 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/cd.py +395 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/cli/__init__.py +8 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/cli/__main__.py +381 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/constant.py +2015 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/legacy.py +80 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/md.py +635 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/models.py +360 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/py.typed +0 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/utils.py +414 -0
- package/.venv_build/Lib/site-packages/charset_normalizer/version.py +8 -0
- package/.venv_build/Lib/site-packages/charset_normalizer-3.4.4.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/charset_normalizer-3.4.4.dist-info/METADATA +764 -0
- package/.venv_build/Lib/site-packages/charset_normalizer-3.4.4.dist-info/RECORD +35 -0
- package/.venv_build/Lib/site-packages/charset_normalizer-3.4.4.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/charset_normalizer-3.4.4.dist-info/entry_points.txt +2 -0
- package/.venv_build/Lib/site-packages/charset_normalizer-3.4.4.dist-info/licenses/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/charset_normalizer-3.4.4.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/distutils-precedence.pth +1 -0
- package/.venv_build/Lib/site-packages/dotenv/__init__.py +51 -0
- package/.venv_build/Lib/site-packages/dotenv/__main__.py +6 -0
- package/.venv_build/Lib/site-packages/dotenv/cli.py +218 -0
- package/.venv_build/Lib/site-packages/dotenv/ipython.py +50 -0
- package/.venv_build/Lib/site-packages/dotenv/main.py +435 -0
- package/.venv_build/Lib/site-packages/dotenv/parser.py +182 -0
- package/.venv_build/Lib/site-packages/dotenv/py.typed +1 -0
- package/.venv_build/Lib/site-packages/dotenv/variables.py +86 -0
- package/.venv_build/Lib/site-packages/dotenv/version.py +1 -0
- package/.venv_build/Lib/site-packages/git/__init__.py +300 -0
- package/.venv_build/Lib/site-packages/git/cmd.py +1741 -0
- package/.venv_build/Lib/site-packages/git/compat.py +165 -0
- package/.venv_build/Lib/site-packages/git/config.py +953 -0
- package/.venv_build/Lib/site-packages/git/db.py +71 -0
- package/.venv_build/Lib/site-packages/git/diff.py +776 -0
- package/.venv_build/Lib/site-packages/git/exc.py +228 -0
- package/.venv_build/Lib/site-packages/git/index/__init__.py +16 -0
- package/.venv_build/Lib/site-packages/git/index/base.py +1532 -0
- package/.venv_build/Lib/site-packages/git/index/fun.py +471 -0
- package/.venv_build/Lib/site-packages/git/index/typ.py +215 -0
- package/.venv_build/Lib/site-packages/git/index/util.py +121 -0
- package/.venv_build/Lib/site-packages/git/objects/__init__.py +25 -0
- package/.venv_build/Lib/site-packages/git/objects/base.py +301 -0
- package/.venv_build/Lib/site-packages/git/objects/blob.py +49 -0
- package/.venv_build/Lib/site-packages/git/objects/commit.py +909 -0
- package/.venv_build/Lib/site-packages/git/objects/fun.py +281 -0
- package/.venv_build/Lib/site-packages/git/objects/submodule/__init__.py +7 -0
- package/.venv_build/Lib/site-packages/git/objects/submodule/base.py +1642 -0
- package/.venv_build/Lib/site-packages/git/objects/submodule/root.py +467 -0
- package/.venv_build/Lib/site-packages/git/objects/submodule/util.py +121 -0
- package/.venv_build/Lib/site-packages/git/objects/tag.py +140 -0
- package/.venv_build/Lib/site-packages/git/objects/tree.py +418 -0
- package/.venv_build/Lib/site-packages/git/objects/util.py +700 -0
- package/.venv_build/Lib/site-packages/git/py.typed +0 -0
- package/.venv_build/Lib/site-packages/git/refs/__init__.py +21 -0
- package/.venv_build/Lib/site-packages/git/refs/head.py +300 -0
- package/.venv_build/Lib/site-packages/git/refs/log.py +399 -0
- package/.venv_build/Lib/site-packages/git/refs/reference.py +177 -0
- package/.venv_build/Lib/site-packages/git/refs/remote.py +79 -0
- package/.venv_build/Lib/site-packages/git/refs/symbolic.py +934 -0
- package/.venv_build/Lib/site-packages/git/refs/tag.py +155 -0
- package/.venv_build/Lib/site-packages/git/remote.py +1248 -0
- package/.venv_build/Lib/site-packages/git/repo/__init__.py +8 -0
- package/.venv_build/Lib/site-packages/git/repo/base.py +1633 -0
- package/.venv_build/Lib/site-packages/git/repo/fun.py +425 -0
- package/.venv_build/Lib/site-packages/git/types.py +285 -0
- package/.venv_build/Lib/site-packages/git/util.py +1350 -0
- package/.venv_build/Lib/site-packages/gitdb/__init__.py +16 -0
- package/.venv_build/Lib/site-packages/gitdb/base.py +315 -0
- package/.venv_build/Lib/site-packages/gitdb/const.py +4 -0
- package/.venv_build/Lib/site-packages/gitdb/db/__init__.py +11 -0
- package/.venv_build/Lib/site-packages/gitdb/db/base.py +278 -0
- package/.venv_build/Lib/site-packages/gitdb/db/git.py +85 -0
- package/.venv_build/Lib/site-packages/gitdb/db/loose.py +268 -0
- package/.venv_build/Lib/site-packages/gitdb/db/mem.py +110 -0
- package/.venv_build/Lib/site-packages/gitdb/db/pack.py +206 -0
- package/.venv_build/Lib/site-packages/gitdb/db/ref.py +82 -0
- package/.venv_build/Lib/site-packages/gitdb/exc.py +57 -0
- package/.venv_build/Lib/site-packages/gitdb/fun.py +704 -0
- package/.venv_build/Lib/site-packages/gitdb/pack.py +1031 -0
- package/.venv_build/Lib/site-packages/gitdb/stream.py +730 -0
- package/.venv_build/Lib/site-packages/gitdb/test/__init__.py +4 -0
- package/.venv_build/Lib/site-packages/gitdb/test/lib.py +192 -0
- package/.venv_build/Lib/site-packages/gitdb/test/test_base.py +105 -0
- package/.venv_build/Lib/site-packages/gitdb/test/test_example.py +43 -0
- package/.venv_build/Lib/site-packages/gitdb/test/test_pack.py +249 -0
- package/.venv_build/Lib/site-packages/gitdb/test/test_stream.py +164 -0
- package/.venv_build/Lib/site-packages/gitdb/test/test_util.py +100 -0
- package/.venv_build/Lib/site-packages/gitdb/typ.py +10 -0
- package/.venv_build/Lib/site-packages/gitdb/util.py +398 -0
- package/.venv_build/Lib/site-packages/gitdb/utils/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/gitdb/utils/encoding.py +18 -0
- package/.venv_build/Lib/site-packages/gitdb-4.0.12.dist-info/AUTHORS +4 -0
- package/.venv_build/Lib/site-packages/gitdb-4.0.12.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/gitdb-4.0.12.dist-info/LICENSE +42 -0
- package/.venv_build/Lib/site-packages/gitdb-4.0.12.dist-info/METADATA +32 -0
- package/.venv_build/Lib/site-packages/gitdb-4.0.12.dist-info/RECORD +57 -0
- package/.venv_build/Lib/site-packages/gitdb-4.0.12.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/gitdb-4.0.12.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/gitpython-3.1.46.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/gitpython-3.1.46.dist-info/METADATA +306 -0
- package/.venv_build/Lib/site-packages/gitpython-3.1.46.dist-info/RECORD +83 -0
- package/.venv_build/Lib/site-packages/gitpython-3.1.46.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/gitpython-3.1.46.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/gitpython-3.1.46.dist-info/licenses/AUTHORS +60 -0
- package/.venv_build/Lib/site-packages/gitpython-3.1.46.dist-info/licenses/LICENSE +29 -0
- package/.venv_build/Lib/site-packages/gitpython-3.1.46.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/idna/__init__.py +45 -0
- package/.venv_build/Lib/site-packages/idna/codec.py +122 -0
- package/.venv_build/Lib/site-packages/idna/compat.py +15 -0
- package/.venv_build/Lib/site-packages/idna/core.py +437 -0
- package/.venv_build/Lib/site-packages/idna/idnadata.py +4309 -0
- package/.venv_build/Lib/site-packages/idna/intranges.py +57 -0
- package/.venv_build/Lib/site-packages/idna/package_data.py +1 -0
- package/.venv_build/Lib/site-packages/idna/py.typed +0 -0
- package/.venv_build/Lib/site-packages/idna/uts46data.py +8841 -0
- package/.venv_build/Lib/site-packages/idna-3.11.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/idna-3.11.dist-info/METADATA +209 -0
- package/.venv_build/Lib/site-packages/idna-3.11.dist-info/RECORD +22 -0
- package/.venv_build/Lib/site-packages/idna-3.11.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/idna-3.11.dist-info/licenses/LICENSE.md +31 -0
- package/.venv_build/Lib/site-packages/markdown_it/__init__.py +6 -0
- package/.venv_build/Lib/site-packages/markdown_it/_compat.py +1 -0
- package/.venv_build/Lib/site-packages/markdown_it/_punycode.py +67 -0
- package/.venv_build/Lib/site-packages/markdown_it/cli/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/markdown_it/cli/parse.py +110 -0
- package/.venv_build/Lib/site-packages/markdown_it/common/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/markdown_it/common/entities.py +5 -0
- package/.venv_build/Lib/site-packages/markdown_it/common/html_blocks.py +69 -0
- package/.venv_build/Lib/site-packages/markdown_it/common/html_re.py +39 -0
- package/.venv_build/Lib/site-packages/markdown_it/common/normalize_url.py +81 -0
- package/.venv_build/Lib/site-packages/markdown_it/common/utils.py +313 -0
- package/.venv_build/Lib/site-packages/markdown_it/helpers/__init__.py +6 -0
- package/.venv_build/Lib/site-packages/markdown_it/helpers/parse_link_destination.py +83 -0
- package/.venv_build/Lib/site-packages/markdown_it/helpers/parse_link_label.py +44 -0
- package/.venv_build/Lib/site-packages/markdown_it/helpers/parse_link_title.py +75 -0
- package/.venv_build/Lib/site-packages/markdown_it/main.py +350 -0
- package/.venv_build/Lib/site-packages/markdown_it/parser_block.py +113 -0
- package/.venv_build/Lib/site-packages/markdown_it/parser_core.py +46 -0
- package/.venv_build/Lib/site-packages/markdown_it/parser_inline.py +148 -0
- package/.venv_build/Lib/site-packages/markdown_it/port.yaml +48 -0
- package/.venv_build/Lib/site-packages/markdown_it/presets/__init__.py +28 -0
- package/.venv_build/Lib/site-packages/markdown_it/presets/commonmark.py +75 -0
- package/.venv_build/Lib/site-packages/markdown_it/presets/default.py +36 -0
- package/.venv_build/Lib/site-packages/markdown_it/presets/zero.py +44 -0
- package/.venv_build/Lib/site-packages/markdown_it/py.typed +1 -0
- package/.venv_build/Lib/site-packages/markdown_it/renderer.py +336 -0
- package/.venv_build/Lib/site-packages/markdown_it/ruler.py +275 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/__init__.py +27 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/blockquote.py +299 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/code.py +36 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/fence.py +101 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/heading.py +69 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/hr.py +56 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/html_block.py +90 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/lheading.py +86 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/list.py +345 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/paragraph.py +66 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/reference.py +235 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/state_block.py +261 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_block/table.py +250 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/__init__.py +19 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/block.py +13 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/inline.py +10 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/linkify.py +149 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/normalize.py +19 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/replacements.py +127 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/smartquotes.py +202 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/state_core.py +25 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_core/text_join.py +35 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/__init__.py +31 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/autolink.py +77 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/backticks.py +72 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/balance_pairs.py +138 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/emphasis.py +102 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/entity.py +53 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/escape.py +93 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/fragments_join.py +43 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/html_inline.py +43 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/image.py +148 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/link.py +149 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/linkify.py +62 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/newline.py +44 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/state_inline.py +165 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/strikethrough.py +127 -0
- package/.venv_build/Lib/site-packages/markdown_it/rules_inline/text.py +62 -0
- package/.venv_build/Lib/site-packages/markdown_it/token.py +178 -0
- package/.venv_build/Lib/site-packages/markdown_it/tree.py +333 -0
- package/.venv_build/Lib/site-packages/markdown_it/utils.py +186 -0
- package/.venv_build/Lib/site-packages/markdown_it_py-4.0.0.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/markdown_it_py-4.0.0.dist-info/METADATA +219 -0
- package/.venv_build/Lib/site-packages/markdown_it_py-4.0.0.dist-info/RECORD +142 -0
- package/.venv_build/Lib/site-packages/markdown_it_py-4.0.0.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/markdown_it_py-4.0.0.dist-info/entry_points.txt +3 -0
- package/.venv_build/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/markdown_it_py-4.0.0.dist-info/licenses/LICENSE.markdown-it +22 -0
- package/.venv_build/Lib/site-packages/mdurl/__init__.py +18 -0
- package/.venv_build/Lib/site-packages/mdurl/_decode.py +104 -0
- package/.venv_build/Lib/site-packages/mdurl/_encode.py +85 -0
- package/.venv_build/Lib/site-packages/mdurl/_format.py +27 -0
- package/.venv_build/Lib/site-packages/mdurl/_parse.py +304 -0
- package/.venv_build/Lib/site-packages/mdurl/_url.py +14 -0
- package/.venv_build/Lib/site-packages/mdurl/py.typed +1 -0
- package/.venv_build/Lib/site-packages/mdurl-0.1.2.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/mdurl-0.1.2.dist-info/LICENSE +46 -0
- package/.venv_build/Lib/site-packages/mdurl-0.1.2.dist-info/METADATA +32 -0
- package/.venv_build/Lib/site-packages/mdurl-0.1.2.dist-info/RECORD +18 -0
- package/.venv_build/Lib/site-packages/mdurl-0.1.2.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/ordlookup/__init__.py +32 -0
- package/.venv_build/Lib/site-packages/ordlookup/oleaut32.py +427 -0
- package/.venv_build/Lib/site-packages/ordlookup/ws2_32.py +198 -0
- package/.venv_build/Lib/site-packages/ordlookup/wsock32.py +77 -0
- package/.venv_build/Lib/site-packages/packaging/__init__.py +15 -0
- package/.venv_build/Lib/site-packages/packaging/_elffile.py +108 -0
- package/.venv_build/Lib/site-packages/packaging/_manylinux.py +262 -0
- package/.venv_build/Lib/site-packages/packaging/_musllinux.py +85 -0
- package/.venv_build/Lib/site-packages/packaging/_parser.py +365 -0
- package/.venv_build/Lib/site-packages/packaging/_structures.py +69 -0
- package/.venv_build/Lib/site-packages/packaging/_tokenizer.py +193 -0
- package/.venv_build/Lib/site-packages/packaging/licenses/__init__.py +147 -0
- package/.venv_build/Lib/site-packages/packaging/licenses/_spdx.py +799 -0
- package/.venv_build/Lib/site-packages/packaging/markers.py +388 -0
- package/.venv_build/Lib/site-packages/packaging/metadata.py +978 -0
- package/.venv_build/Lib/site-packages/packaging/py.typed +0 -0
- package/.venv_build/Lib/site-packages/packaging/pylock.py +635 -0
- package/.venv_build/Lib/site-packages/packaging/requirements.py +86 -0
- package/.venv_build/Lib/site-packages/packaging/specifiers.py +1068 -0
- package/.venv_build/Lib/site-packages/packaging/tags.py +651 -0
- package/.venv_build/Lib/site-packages/packaging/utils.py +158 -0
- package/.venv_build/Lib/site-packages/packaging/version.py +792 -0
- package/.venv_build/Lib/site-packages/packaging-26.0.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/packaging-26.0.dist-info/METADATA +107 -0
- package/.venv_build/Lib/site-packages/packaging-26.0.dist-info/RECORD +42 -0
- package/.venv_build/Lib/site-packages/packaging-26.0.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/packaging-26.0.dist-info/licenses/LICENSE +3 -0
- package/.venv_build/Lib/site-packages/packaging-26.0.dist-info/licenses/LICENSE.APACHE +177 -0
- package/.venv_build/Lib/site-packages/packaging-26.0.dist-info/licenses/LICENSE.BSD +23 -0
- package/.venv_build/Lib/site-packages/pefile-2024.8.26.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/pefile-2024.8.26.dist-info/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pefile-2024.8.26.dist-info/METADATA +34 -0
- package/.venv_build/Lib/site-packages/pefile-2024.8.26.dist-info/RECORD +18 -0
- package/.venv_build/Lib/site-packages/pefile-2024.8.26.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/pefile-2024.8.26.dist-info/top_level.txt +3 -0
- package/.venv_build/Lib/site-packages/pefile.py +8034 -0
- package/.venv_build/Lib/site-packages/peutils.py +588 -0
- package/.venv_build/Lib/site-packages/pip/__init__.py +13 -0
- package/.venv_build/Lib/site-packages/pip/__main__.py +24 -0
- package/.venv_build/Lib/site-packages/pip/__pip-runner__.py +50 -0
- package/.venv_build/Lib/site-packages/pip/_internal/__init__.py +18 -0
- package/.venv_build/Lib/site-packages/pip/_internal/build_env.py +606 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cache.py +291 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/__init__.py +3 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/autocompletion.py +184 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/base_command.py +255 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/cmdoptions.py +1267 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/command_context.py +28 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/index_command.py +195 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/main.py +85 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/main_parser.py +136 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/parser.py +358 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/progress_bars.py +153 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/req_command.py +447 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/spinners.py +235 -0
- package/.venv_build/Lib/site-packages/pip/_internal/cli/status_codes.py +6 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/__init__.py +139 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/cache.py +255 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/check.py +66 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/completion.py +136 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/configuration.py +288 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/debug.py +203 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/download.py +146 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/freeze.py +107 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/hash.py +58 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/help.py +40 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/index.py +166 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/inspect.py +92 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/install.py +810 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/list.py +398 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/lock.py +175 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/search.py +178 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/show.py +231 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/uninstall.py +113 -0
- package/.venv_build/Lib/site-packages/pip/_internal/commands/wheel.py +171 -0
- package/.venv_build/Lib/site-packages/pip/_internal/configuration.py +396 -0
- package/.venv_build/Lib/site-packages/pip/_internal/distributions/__init__.py +21 -0
- package/.venv_build/Lib/site-packages/pip/_internal/distributions/base.py +55 -0
- package/.venv_build/Lib/site-packages/pip/_internal/distributions/installed.py +33 -0
- package/.venv_build/Lib/site-packages/pip/_internal/distributions/sdist.py +164 -0
- package/.venv_build/Lib/site-packages/pip/_internal/distributions/wheel.py +44 -0
- package/.venv_build/Lib/site-packages/pip/_internal/exceptions.py +971 -0
- package/.venv_build/Lib/site-packages/pip/_internal/index/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/pip/_internal/index/collector.py +488 -0
- package/.venv_build/Lib/site-packages/pip/_internal/index/package_finder.py +1125 -0
- package/.venv_build/Lib/site-packages/pip/_internal/index/sources.py +287 -0
- package/.venv_build/Lib/site-packages/pip/_internal/locations/__init__.py +440 -0
- package/.venv_build/Lib/site-packages/pip/_internal/locations/_distutils.py +173 -0
- package/.venv_build/Lib/site-packages/pip/_internal/locations/_sysconfig.py +218 -0
- package/.venv_build/Lib/site-packages/pip/_internal/locations/base.py +82 -0
- package/.venv_build/Lib/site-packages/pip/_internal/main.py +12 -0
- package/.venv_build/Lib/site-packages/pip/_internal/metadata/__init__.py +169 -0
- package/.venv_build/Lib/site-packages/pip/_internal/metadata/_json.py +87 -0
- package/.venv_build/Lib/site-packages/pip/_internal/metadata/base.py +685 -0
- package/.venv_build/Lib/site-packages/pip/_internal/metadata/importlib/__init__.py +6 -0
- package/.venv_build/Lib/site-packages/pip/_internal/metadata/importlib/_compat.py +87 -0
- package/.venv_build/Lib/site-packages/pip/_internal/metadata/importlib/_dists.py +229 -0
- package/.venv_build/Lib/site-packages/pip/_internal/metadata/importlib/_envs.py +143 -0
- package/.venv_build/Lib/site-packages/pip/_internal/metadata/pkg_resources.py +298 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/candidate.py +25 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/direct_url.py +227 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/format_control.py +78 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/index.py +28 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/installation_report.py +57 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/link.py +617 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/release_control.py +92 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/scheme.py +25 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/search_scope.py +126 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/selection_prefs.py +56 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/target_python.py +122 -0
- package/.venv_build/Lib/site-packages/pip/_internal/models/wheel.py +80 -0
- package/.venv_build/Lib/site-packages/pip/_internal/network/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/pip/_internal/network/auth.py +568 -0
- package/.venv_build/Lib/site-packages/pip/_internal/network/cache.py +128 -0
- package/.venv_build/Lib/site-packages/pip/_internal/network/download.py +341 -0
- package/.venv_build/Lib/site-packages/pip/_internal/network/lazy_wheel.py +215 -0
- package/.venv_build/Lib/site-packages/pip/_internal/network/session.py +532 -0
- package/.venv_build/Lib/site-packages/pip/_internal/network/utils.py +98 -0
- package/.venv_build/Lib/site-packages/pip/_internal/network/xmlrpc.py +61 -0
- package/.venv_build/Lib/site-packages/pip/_internal/operations/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_internal/operations/check.py +175 -0
- package/.venv_build/Lib/site-packages/pip/_internal/operations/freeze.py +259 -0
- package/.venv_build/Lib/site-packages/pip/_internal/operations/install/__init__.py +1 -0
- package/.venv_build/Lib/site-packages/pip/_internal/operations/install/wheel.py +745 -0
- package/.venv_build/Lib/site-packages/pip/_internal/operations/prepare.py +747 -0
- package/.venv_build/Lib/site-packages/pip/_internal/pyproject.py +123 -0
- package/.venv_build/Lib/site-packages/pip/_internal/req/__init__.py +103 -0
- package/.venv_build/Lib/site-packages/pip/_internal/req/constructors.py +568 -0
- package/.venv_build/Lib/site-packages/pip/_internal/req/pep723.py +41 -0
- package/.venv_build/Lib/site-packages/pip/_internal/req/req_dependency_group.py +75 -0
- package/.venv_build/Lib/site-packages/pip/_internal/req/req_file.py +631 -0
- package/.venv_build/Lib/site-packages/pip/_internal/req/req_install.py +828 -0
- package/.venv_build/Lib/site-packages/pip/_internal/req/req_set.py +81 -0
- package/.venv_build/Lib/site-packages/pip/_internal/req/req_uninstall.py +639 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/base.py +20 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/legacy/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/legacy/resolver.py +598 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/base.py +142 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/candidates.py +591 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/factory.py +856 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/found_candidates.py +166 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/provider.py +285 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/reporter.py +98 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/requirements.py +251 -0
- package/.venv_build/Lib/site-packages/pip/_internal/resolution/resolvelib/resolver.py +332 -0
- package/.venv_build/Lib/site-packages/pip/_internal/self_outdated_check.py +255 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/_jaraco_text.py +109 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/_log.py +38 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/appdirs.py +52 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/compat.py +85 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/compatibility_tags.py +201 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/datetime.py +28 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/deprecation.py +126 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/direct_url_helpers.py +87 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/egg_link.py +81 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/entrypoints.py +88 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/filesystem.py +203 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/filetypes.py +24 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/glibc.py +102 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/hashes.py +150 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/logging.py +396 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/misc.py +771 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/packaging.py +44 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/pylock.py +116 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/retry.py +45 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/subprocess.py +248 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/temp_dir.py +294 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/unpacking.py +362 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/urls.py +55 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/virtualenv.py +105 -0
- package/.venv_build/Lib/site-packages/pip/_internal/utils/wheel.py +132 -0
- package/.venv_build/Lib/site-packages/pip/_internal/vcs/__init__.py +15 -0
- package/.venv_build/Lib/site-packages/pip/_internal/vcs/bazaar.py +130 -0
- package/.venv_build/Lib/site-packages/pip/_internal/vcs/git.py +571 -0
- package/.venv_build/Lib/site-packages/pip/_internal/vcs/mercurial.py +186 -0
- package/.venv_build/Lib/site-packages/pip/_internal/vcs/subversion.py +335 -0
- package/.venv_build/Lib/site-packages/pip/_internal/vcs/versioncontrol.py +695 -0
- package/.venv_build/Lib/site-packages/pip/_internal/wheel_builder.py +261 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/README.rst +180 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/__init__.py +117 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/__init__.py +32 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/_cmd.py +70 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/adapter.py +167 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/cache.py +75 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/caches/__init__.py +8 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/caches/file_cache.py +145 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/caches/redis_cache.py +48 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/controller.py +511 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/filewrapper.py +121 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/heuristics.py +157 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/serialize.py +146 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/cachecontrol/wrapper.py +43 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/certifi/LICENSE +20 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/certifi/__init__.py +4 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/certifi/__main__.py +12 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/certifi/cacert.pem +4468 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/certifi/core.py +83 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/certifi/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/dependency_groups/__init__.py +13 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/dependency_groups/__main__.py +65 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/dependency_groups/_implementation.py +209 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/dependency_groups/_lint_dependency_groups.py +59 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/dependency_groups/_pip_wrapper.py +62 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/dependency_groups/_toml_compat.py +9 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/dependency_groups/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/__init__.py +33 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/compat.py +1137 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/resources.py +358 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/scripts.py +447 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/t32.exe +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/t64-arm.exe +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/t64.exe +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/util.py +1984 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/w32.exe +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/w64-arm.exe +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distlib/w64.exe +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distro/LICENSE +202 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distro/__init__.py +54 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distro/__main__.py +4 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distro/distro.py +1403 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/distro/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/LICENSE.md +31 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/__init__.py +45 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/codec.py +122 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/compat.py +15 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/core.py +437 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/idnadata.py +4309 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/intranges.py +57 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/package_data.py +1 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/idna/uts46data.py +8841 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/msgpack/COPYING +14 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/msgpack/__init__.py +55 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/msgpack/exceptions.py +48 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/msgpack/ext.py +170 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/msgpack/fallback.py +929 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/LICENSE +3 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/__init__.py +15 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/_elffile.py +108 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/_manylinux.py +262 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/_musllinux.py +85 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/_parser.py +365 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/_structures.py +69 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/_tokenizer.py +193 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/licenses/__init__.py +147 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/licenses/_spdx.py +799 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/markers.py +388 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/metadata.py +978 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/pylock.py +635 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/requirements.py +86 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/specifiers.py +1068 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/tags.py +651 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/utils.py +158 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/packaging/version.py +792 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pkg_resources/__init__.py +3676 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/__init__.py +631 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/__main__.py +55 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/android.py +249 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/api.py +299 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/macos.py +146 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/unix.py +272 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/version.py +34 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/platformdirs/windows.py +278 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/LICENSE +25 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/__init__.py +82 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/__main__.py +17 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/console.py +70 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/filter.py +70 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/filters/__init__.py +940 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/formatter.py +129 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/formatters/__init__.py +157 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/formatters/_mapping.py +23 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/lexer.py +963 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/lexers/__init__.py +362 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/lexers/_mapping.py +602 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/lexers/python.py +1201 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/modeline.py +43 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/plugin.py +72 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/regexopt.py +91 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/scanner.py +104 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/sphinxext.py +247 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/style.py +203 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/styles/__init__.py +61 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/styles/_mapping.py +54 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/token.py +214 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/unistring.py +153 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pygments/util.py +324 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pyproject_hooks/__init__.py +31 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pyproject_hooks/_impl.py +410 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/__init__.py +21 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pyproject_hooks/_in_process/_in_process.py +389 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/pyproject_hooks/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/LICENSE +175 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/__init__.py +179 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/__version__.py +14 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/_internal_utils.py +50 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/adapters.py +696 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/api.py +157 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/auth.py +314 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/certs.py +17 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/compat.py +90 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/cookies.py +561 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/exceptions.py +151 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/help.py +127 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/hooks.py +33 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/models.py +1039 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/packages.py +25 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/sessions.py +831 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/status_codes.py +128 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/structures.py +99 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/requests/utils.py +1086 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/__init__.py +27 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/providers.py +196 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/reporters.py +55 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/resolvers/__init__.py +27 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/resolvers/abstract.py +47 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/resolvers/criterion.py +48 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/resolvers/exceptions.py +57 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/resolvers/resolution.py +627 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/resolvelib/structs.py +209 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/LICENSE +19 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/__init__.py +177 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/__main__.py +245 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_cell_widths.py +454 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_emoji_codes.py +3610 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_emoji_replace.py +32 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_export_format.py +76 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_extension.py +10 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_fileno.py +24 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_inspect.py +268 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_log_render.py +94 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_loop.py +43 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_null_file.py +69 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_palettes.py +309 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_pick.py +17 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_ratio.py +153 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_spinners.py +482 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_stack.py +16 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_timer.py +19 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_win32_console.py +661 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_windows.py +71 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_windows_renderer.py +56 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/_wrap.py +93 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/abc.py +33 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/align.py +306 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/ansi.py +241 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/bar.py +93 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/box.py +474 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/cells.py +174 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/color.py +621 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/color_triplet.py +38 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/columns.py +187 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/console.py +2680 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/constrain.py +37 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/containers.py +167 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/control.py +219 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/default_styles.py +193 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/diagnose.py +39 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/emoji.py +91 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/errors.py +34 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/file_proxy.py +57 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/filesize.py +88 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/highlighter.py +232 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/json.py +139 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/jupyter.py +101 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/layout.py +442 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/live.py +400 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/live_render.py +106 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/logging.py +297 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/markup.py +251 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/measure.py +151 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/padding.py +141 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/pager.py +34 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/palette.py +100 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/panel.py +317 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/pretty.py +1016 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/progress.py +1715 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/progress_bar.py +223 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/prompt.py +400 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/protocol.py +42 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/region.py +10 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/repr.py +149 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/rule.py +130 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/scope.py +86 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/screen.py +54 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/segment.py +752 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/spinner.py +132 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/status.py +131 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/style.py +792 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/styled.py +42 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/syntax.py +985 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/table.py +1006 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/terminal_theme.py +153 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/text.py +1361 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/theme.py +115 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/themes.py +5 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/traceback.py +899 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/rich/tree.py +257 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli/__init__.py +8 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli/_parser.py +777 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli/_re.py +115 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli/_types.py +10 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli/py.typed +1 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli_w/__init__.py +4 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli_w/_writer.py +229 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/tomli_w/py.typed +1 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/truststore/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/truststore/__init__.py +36 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/truststore/_api.py +341 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/truststore/_macos.py +571 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/truststore/_openssl.py +68 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/truststore/_ssl_constants.py +31 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/truststore/_windows.py +567 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/truststore/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/__init__.py +102 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/_collections.py +355 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/_version.py +2 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/connection.py +572 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/connectionpool.py +1140 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/_appengine_environ.py +36 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/bindings.py +519 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/_securetransport/low_level.py +397 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/appengine.py +314 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/ntlmpool.py +130 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/pyopenssl.py +518 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/securetransport.py +920 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/contrib/socks.py +216 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/exceptions.py +323 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/fields.py +274 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/filepost.py +98 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/packages/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/packages/backports/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/packages/backports/makefile.py +51 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/packages/backports/weakref_finalize.py +155 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/packages/six.py +1076 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/poolmanager.py +540 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/request.py +191 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/response.py +879 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/__init__.py +49 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/connection.py +149 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/proxy.py +57 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/queue.py +22 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/request.py +137 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/response.py +107 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/retry.py +622 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/ssl_.py +504 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/ssl_match_hostname.py +159 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/ssltransport.py +221 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/timeout.py +271 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/url.py +435 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/urllib3/util/wait.py +152 -0
- package/.venv_build/Lib/site-packages/pip/_vendor/vendor.txt +19 -0
- package/.venv_build/Lib/site-packages/pip/py.typed +4 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/METADATA +111 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/RECORD +878 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/entry_points.txt +4 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/AUTHORS.txt +860 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/LICENSE.txt +20 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/cachecontrol/LICENSE.txt +13 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/certifi/LICENSE +20 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/dependency_groups/LICENSE.txt +9 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distlib/LICENSE.txt +284 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/distro/LICENSE +202 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/idna/LICENSE.md +31 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/msgpack/COPYING +14 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE +3 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.APACHE +177 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/packaging/LICENSE.BSD +23 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pkg_resources/LICENSE +17 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/platformdirs/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pygments/LICENSE +25 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/pyproject_hooks/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/requests/LICENSE +175 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/resolvelib/LICENSE +13 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/rich/LICENSE +19 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/tomli_w/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/truststore/LICENSE +21 -0
- package/.venv_build/Lib/site-packages/pip-26.0.1.dist-info/licenses/src/pip/_vendor/urllib3/LICENSE.txt +21 -0
- package/.venv_build/Lib/site-packages/pkg_resources/__init__.py +3296 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/appdirs.py +608 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/__init__.py +36 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_adapters.py +170 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_common.py +104 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_compat.py +98 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_itertools.py +35 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/_legacy.py +121 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/abc.py +137 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/readers.py +122 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/importlib_resources/simple.py +116 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/jaraco/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/jaraco/context.py +213 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/jaraco/functools.py +525 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/jaraco/text/__init__.py +599 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/more_itertools/__init__.py +4 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/more_itertools/more.py +4316 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/more_itertools/recipes.py +698 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/__about__.py +26 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/__init__.py +25 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/_manylinux.py +301 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/_musllinux.py +136 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/_structures.py +61 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/markers.py +304 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/requirements.py +146 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/specifiers.py +802 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/tags.py +487 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/utils.py +136 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/packaging/version.py +504 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/__init__.py +331 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/actions.py +207 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/common.py +424 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/core.py +5814 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/diagram/__init__.py +642 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/exceptions.py +267 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/helpers.py +1088 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/results.py +760 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/testing.py +331 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/unicode.py +352 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/pyparsing/util.py +235 -0
- package/.venv_build/Lib/site-packages/pkg_resources/_vendor/zipp.py +329 -0
- package/.venv_build/Lib/site-packages/pkg_resources/extern/__init__.py +76 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/__init__.py +54 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/application/__init__.py +32 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/application/application.py +1630 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/application/current.py +195 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/application/dummy.py +55 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/application/run_in_terminal.py +117 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/auto_suggest.py +177 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/buffer.py +2029 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/cache.py +127 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/clipboard/__init__.py +17 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/clipboard/base.py +109 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/clipboard/in_memory.py +44 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/clipboard/pyperclip.py +42 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/completion/__init__.py +43 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/completion/base.py +438 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/completion/deduplicate.py +45 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/completion/filesystem.py +118 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/completion/fuzzy_completer.py +213 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/completion/nested.py +109 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/completion/word_completer.py +94 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/completers/__init__.py +5 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/completers/system.py +64 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/regular_languages/__init__.py +80 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/regular_languages/compiler.py +579 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/regular_languages/completion.py +100 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/regular_languages/lexer.py +94 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/regular_languages/regex_parser.py +279 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/regular_languages/validation.py +60 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/ssh/__init__.py +8 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/ssh/server.py +178 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/telnet/__init__.py +7 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/telnet/log.py +13 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/telnet/protocol.py +209 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/contrib/telnet/server.py +428 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/cursor_shapes.py +117 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/data_structures.py +18 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/document.py +1182 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/enums.py +19 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/eventloop/__init__.py +31 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/eventloop/async_generator.py +125 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/eventloop/inputhook.py +191 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/eventloop/utils.py +101 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/eventloop/win32.py +72 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/filters/__init__.py +71 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/filters/app.py +419 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/filters/base.py +260 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/filters/cli.py +65 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/filters/utils.py +41 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/formatted_text/__init__.py +59 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/formatted_text/ansi.py +302 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/formatted_text/base.py +179 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/formatted_text/html.py +145 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/formatted_text/pygments.py +32 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/formatted_text/utils.py +102 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/history.py +306 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/__init__.py +14 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/ansi_escape_sequences.py +344 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/base.py +154 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/defaults.py +79 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/posix_pipe.py +118 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/posix_utils.py +97 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/typeahead.py +78 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/vt100.py +309 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/vt100_parser.py +250 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/win32.py +904 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/input/win32_pipe.py +156 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/__init__.py +22 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/auto_suggest.py +66 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/basic.py +257 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/completion.py +206 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/cpr.py +30 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/emacs.py +563 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/focus.py +26 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/mouse.py +348 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/named_commands.py +691 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/open_in_editor.py +52 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/page_navigation.py +85 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/scroll.py +190 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/search.py +96 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/bindings/vi.py +2233 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/defaults.py +63 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/digraphs.py +1378 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/emacs_state.py +36 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/key_bindings.py +672 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/key_processor.py +526 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/key_binding/vi_state.py +107 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/keys.py +222 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/__init__.py +147 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/containers.py +2766 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/controls.py +956 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/dimension.py +216 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/dummy.py +40 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/layout.py +412 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/margins.py +304 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/menus.py +748 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/mouse_handlers.py +56 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/processors.py +1016 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/screen.py +323 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/scrollable_pane.py +494 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/layout/utils.py +80 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/lexers/__init__.py +21 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/lexers/base.py +85 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/lexers/pygments.py +328 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/log.py +13 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/mouse_events.py +85 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/__init__.py +15 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/base.py +332 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/color_depth.py +64 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/conemu.py +65 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/defaults.py +106 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/flush_stdout.py +87 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/plain_text.py +143 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/vt100.py +760 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/win32.py +684 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/output/windows10.py +133 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/patch_stdout.py +297 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/py.typed +0 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/renderer.py +820 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/search.py +226 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/selection.py +58 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/shortcuts/__init__.py +49 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/shortcuts/choice_input.py +311 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/shortcuts/dialogs.py +330 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/shortcuts/progress_bar/__init__.py +33 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/shortcuts/progress_bar/base.py +449 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/shortcuts/progress_bar/formatters.py +431 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/shortcuts/prompt.py +1538 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/shortcuts/utils.py +239 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/styles/__init__.py +67 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/styles/base.py +188 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/styles/defaults.py +236 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/styles/named_colors.py +162 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/styles/pygments.py +70 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/styles/style.py +407 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/styles/style_transformation.py +374 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/token.py +9 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/utils.py +327 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/validation.py +192 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/widgets/__init__.py +63 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/widgets/base.py +1080 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/widgets/dialogs.py +108 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/widgets/menus.py +374 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/widgets/toolbars.py +370 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit/win32_types.py +229 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit-3.0.52.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit-3.0.52.dist-info/METADATA +172 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit-3.0.52.dist-info/RECORD +298 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit-3.0.52.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit-3.0.52.dist-info/licenses/AUTHORS.rst +11 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit-3.0.52.dist-info/licenses/LICENSE +27 -0
- package/.venv_build/Lib/site-packages/prompt_toolkit-3.0.52.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/pygments/__init__.py +82 -0
- package/.venv_build/Lib/site-packages/pygments/__main__.py +17 -0
- package/.venv_build/Lib/site-packages/pygments/cmdline.py +668 -0
- package/.venv_build/Lib/site-packages/pygments/console.py +70 -0
- package/.venv_build/Lib/site-packages/pygments/filter.py +70 -0
- package/.venv_build/Lib/site-packages/pygments/filters/__init__.py +940 -0
- package/.venv_build/Lib/site-packages/pygments/formatter.py +129 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/__init__.py +157 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/_mapping.py +23 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/bbcode.py +108 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/groff.py +170 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/html.py +995 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/img.py +686 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/irc.py +154 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/latex.py +518 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/other.py +160 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/pangomarkup.py +83 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/rtf.py +349 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/svg.py +185 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/terminal.py +127 -0
- package/.venv_build/Lib/site-packages/pygments/formatters/terminal256.py +338 -0
- package/.venv_build/Lib/site-packages/pygments/lexer.py +961 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/__init__.py +362 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_ada_builtins.py +103 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_asy_builtins.py +1644 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_cl_builtins.py +231 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_cocoa_builtins.py +75 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_csound_builtins.py +1780 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_css_builtins.py +558 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_googlesql_builtins.py +918 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_julia_builtins.py +411 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_lasso_builtins.py +5326 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_lilypond_builtins.py +4932 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_lua_builtins.py +285 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_luau_builtins.py +62 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_mapping.py +602 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_mql_builtins.py +1171 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_mysql_builtins.py +1335 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_openedge_builtins.py +2600 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_php_builtins.py +3325 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_postgres_builtins.py +739 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_qlik_builtins.py +666 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_scheme_builtins.py +1609 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_scilab_builtins.py +3093 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_sourcemod_builtins.py +1151 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_sql_builtins.py +106 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_stan_builtins.py +648 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_stata_builtins.py +457 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_tsql_builtins.py +1003 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_usd_builtins.py +112 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_vbscript_builtins.py +279 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/_vim_builtins.py +1938 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/actionscript.py +243 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ada.py +144 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/agile.py +25 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/algebra.py +299 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ambient.py +75 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/amdgpu.py +54 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ampl.py +87 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/apdlexer.py +593 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/apl.py +103 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/archetype.py +315 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/arrow.py +116 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/arturo.py +249 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/asc.py +55 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/asm.py +1051 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/asn1.py +178 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/automation.py +379 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/bare.py +101 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/basic.py +656 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/bdd.py +57 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/berry.py +99 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/bibtex.py +159 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/blueprint.py +173 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/boa.py +97 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/bqn.py +112 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/business.py +625 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/c_cpp.py +414 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/c_like.py +738 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/capnproto.py +74 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/carbon.py +95 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/cddl.py +172 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/chapel.py +139 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/clean.py +180 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/codeql.py +80 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/comal.py +81 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/compiled.py +35 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/configs.py +1433 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/console.py +114 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/cplint.py +43 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/crystal.py +364 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/csound.py +466 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/css.py +602 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/d.py +259 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/dalvik.py +126 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/data.py +763 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/dax.py +135 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/devicetree.py +108 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/diff.py +169 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/dns.py +109 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/dotnet.py +873 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/dsls.py +970 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/dylan.py +279 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ecl.py +144 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/eiffel.py +68 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/elm.py +123 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/elpi.py +175 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/email.py +132 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/erlang.py +526 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/esoteric.py +300 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ezhil.py +76 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/factor.py +363 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/fantom.py +251 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/felix.py +275 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/fift.py +68 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/floscript.py +81 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/forth.py +178 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/fortran.py +212 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/foxpro.py +427 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/freefem.py +893 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/func.py +110 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/functional.py +21 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/futhark.py +105 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/gcodelexer.py +35 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/gdscript.py +189 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/gleam.py +74 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/go.py +97 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/grammar_notation.py +262 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/graph.py +108 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/graphics.py +794 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/graphql.py +176 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/graphviz.py +58 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/gsql.py +103 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/hare.py +73 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/haskell.py +866 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/haxe.py +935 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/hdl.py +466 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/hexdump.py +102 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/html.py +670 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/idl.py +284 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/igor.py +435 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/inferno.py +95 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/installers.py +352 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/int_fiction.py +1370 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/iolang.py +61 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/j.py +151 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/javascript.py +1591 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/jmespath.py +69 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/jslt.py +94 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/json5.py +83 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/jsonnet.py +169 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/jsx.py +100 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/julia.py +294 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/jvm.py +1802 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/kuin.py +332 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/kusto.py +93 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ldap.py +155 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/lean.py +241 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/lilypond.py +225 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/lisp.py +3146 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/macaulay2.py +1814 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/make.py +212 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/maple.py +291 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/markup.py +1654 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/math.py +21 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/matlab.py +3307 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/maxima.py +84 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/meson.py +139 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/mime.py +210 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/minecraft.py +391 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/mips.py +130 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ml.py +958 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/modeling.py +366 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/modula2.py +1579 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/mojo.py +707 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/monte.py +203 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/mosel.py +447 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ncl.py +894 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/nimrod.py +199 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/nit.py +63 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/nix.py +144 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/numbair.py +63 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/oberon.py +120 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/objective.py +513 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ooc.py +84 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/openscad.py +96 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/other.py +41 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/parasail.py +78 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/parsers.py +798 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/pascal.py +644 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/pawn.py +202 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/pddl.py +82 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/perl.py +733 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/phix.py +363 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/php.py +334 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/pointless.py +70 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/pony.py +93 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/praat.py +303 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/procfile.py +41 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/prolog.py +318 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/promql.py +176 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/prql.py +251 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ptx.py +119 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/python.py +1201 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/q.py +187 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/qlik.py +117 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/qvt.py +153 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/r.py +196 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/rdf.py +468 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/rebol.py +419 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/rego.py +57 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/resource.py +83 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ride.py +138 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/rita.py +42 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/rnc.py +66 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/roboconf.py +81 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/robotframework.py +551 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ruby.py +518 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/rust.py +222 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/sas.py +227 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/savi.py +171 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/scdoc.py +85 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/scripting.py +1616 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/sgf.py +59 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/shell.py +902 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/sieve.py +78 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/slash.py +183 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/smalltalk.py +194 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/smithy.py +77 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/smv.py +78 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/snobol.py +82 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/solidity.py +87 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/soong.py +78 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/sophia.py +102 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/special.py +122 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/spice.py +70 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/sql.py +1109 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/srcinfo.py +62 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/stata.py +170 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/supercollider.py +94 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/tablegen.py +177 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/tact.py +303 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/tal.py +77 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/tcl.py +148 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/teal.py +88 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/templates.py +2355 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/teraterm.py +325 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/testing.py +209 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/text.py +27 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/textedit.py +205 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/textfmts.py +436 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/theorem.py +410 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/thingsdb.py +140 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/tlb.py +59 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/tls.py +54 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/tnt.py +270 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/trafficscript.py +51 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/typoscript.py +216 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/typst.py +160 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/ul4.py +309 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/unicon.py +413 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/urbi.py +145 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/usd.py +85 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/varnish.py +189 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/verification.py +113 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/verifpal.py +65 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/vip.py +150 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/vyper.py +140 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/web.py +24 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/webassembly.py +119 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/webidl.py +298 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/webmisc.py +1006 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/wgsl.py +406 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/whiley.py +115 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/wowtoc.py +120 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/wren.py +98 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/x10.py +66 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/xorg.py +38 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/yang.py +103 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/yara.py +69 -0
- package/.venv_build/Lib/site-packages/pygments/lexers/zig.py +125 -0
- package/.venv_build/Lib/site-packages/pygments/modeline.py +43 -0
- package/.venv_build/Lib/site-packages/pygments/plugin.py +72 -0
- package/.venv_build/Lib/site-packages/pygments/regexopt.py +91 -0
- package/.venv_build/Lib/site-packages/pygments/scanner.py +104 -0
- package/.venv_build/Lib/site-packages/pygments/sphinxext.py +247 -0
- package/.venv_build/Lib/site-packages/pygments/style.py +203 -0
- package/.venv_build/Lib/site-packages/pygments/styles/__init__.py +61 -0
- package/.venv_build/Lib/site-packages/pygments/styles/_mapping.py +54 -0
- package/.venv_build/Lib/site-packages/pygments/styles/abap.py +32 -0
- package/.venv_build/Lib/site-packages/pygments/styles/algol.py +65 -0
- package/.venv_build/Lib/site-packages/pygments/styles/algol_nu.py +65 -0
- package/.venv_build/Lib/site-packages/pygments/styles/arduino.py +100 -0
- package/.venv_build/Lib/site-packages/pygments/styles/autumn.py +67 -0
- package/.venv_build/Lib/site-packages/pygments/styles/borland.py +53 -0
- package/.venv_build/Lib/site-packages/pygments/styles/bw.py +52 -0
- package/.venv_build/Lib/site-packages/pygments/styles/coffee.py +80 -0
- package/.venv_build/Lib/site-packages/pygments/styles/colorful.py +83 -0
- package/.venv_build/Lib/site-packages/pygments/styles/default.py +76 -0
- package/.venv_build/Lib/site-packages/pygments/styles/dracula.py +90 -0
- package/.venv_build/Lib/site-packages/pygments/styles/emacs.py +75 -0
- package/.venv_build/Lib/site-packages/pygments/styles/friendly.py +76 -0
- package/.venv_build/Lib/site-packages/pygments/styles/friendly_grayscale.py +80 -0
- package/.venv_build/Lib/site-packages/pygments/styles/fruity.py +47 -0
- package/.venv_build/Lib/site-packages/pygments/styles/gh_dark.py +113 -0
- package/.venv_build/Lib/site-packages/pygments/styles/gruvbox.py +118 -0
- package/.venv_build/Lib/site-packages/pygments/styles/igor.py +32 -0
- package/.venv_build/Lib/site-packages/pygments/styles/inkpot.py +72 -0
- package/.venv_build/Lib/site-packages/pygments/styles/lightbulb.py +110 -0
- package/.venv_build/Lib/site-packages/pygments/styles/lilypond.py +62 -0
- package/.venv_build/Lib/site-packages/pygments/styles/lovelace.py +100 -0
- package/.venv_build/Lib/site-packages/pygments/styles/manni.py +79 -0
- package/.venv_build/Lib/site-packages/pygments/styles/material.py +124 -0
- package/.venv_build/Lib/site-packages/pygments/styles/monokai.py +112 -0
- package/.venv_build/Lib/site-packages/pygments/styles/murphy.py +82 -0
- package/.venv_build/Lib/site-packages/pygments/styles/native.py +70 -0
- package/.venv_build/Lib/site-packages/pygments/styles/nord.py +156 -0
- package/.venv_build/Lib/site-packages/pygments/styles/onedark.py +63 -0
- package/.venv_build/Lib/site-packages/pygments/styles/paraiso_dark.py +124 -0
- package/.venv_build/Lib/site-packages/pygments/styles/paraiso_light.py +124 -0
- package/.venv_build/Lib/site-packages/pygments/styles/pastie.py +78 -0
- package/.venv_build/Lib/site-packages/pygments/styles/perldoc.py +73 -0
- package/.venv_build/Lib/site-packages/pygments/styles/rainbow_dash.py +95 -0
- package/.venv_build/Lib/site-packages/pygments/styles/rrt.py +40 -0
- package/.venv_build/Lib/site-packages/pygments/styles/sas.py +46 -0
- package/.venv_build/Lib/site-packages/pygments/styles/solarized.py +144 -0
- package/.venv_build/Lib/site-packages/pygments/styles/staroffice.py +31 -0
- package/.venv_build/Lib/site-packages/pygments/styles/stata_dark.py +42 -0
- package/.venv_build/Lib/site-packages/pygments/styles/stata_light.py +42 -0
- package/.venv_build/Lib/site-packages/pygments/styles/tango.py +143 -0
- package/.venv_build/Lib/site-packages/pygments/styles/trac.py +66 -0
- package/.venv_build/Lib/site-packages/pygments/styles/vim.py +67 -0
- package/.venv_build/Lib/site-packages/pygments/styles/vs.py +41 -0
- package/.venv_build/Lib/site-packages/pygments/styles/xcode.py +53 -0
- package/.venv_build/Lib/site-packages/pygments/styles/zenburn.py +83 -0
- package/.venv_build/Lib/site-packages/pygments/token.py +214 -0
- package/.venv_build/Lib/site-packages/pygments/unistring.py +153 -0
- package/.venv_build/Lib/site-packages/pygments/util.py +324 -0
- package/.venv_build/Lib/site-packages/pygments-2.19.2.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/pygments-2.19.2.dist-info/METADATA +58 -0
- package/.venv_build/Lib/site-packages/pygments-2.19.2.dist-info/RECORD +684 -0
- package/.venv_build/Lib/site-packages/pygments-2.19.2.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/pygments-2.19.2.dist-info/entry_points.txt +2 -0
- package/.venv_build/Lib/site-packages/pygments-2.19.2.dist-info/licenses/AUTHORS +291 -0
- package/.venv_build/Lib/site-packages/pygments-2.19.2.dist-info/licenses/LICENSE +25 -0
- package/.venv_build/Lib/site-packages/pyinstaller-6.10.0.dist-info/COPYING.txt +636 -0
- package/.venv_build/Lib/site-packages/pyinstaller-6.10.0.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/pyinstaller-6.10.0.dist-info/METADATA +209 -0
- package/.venv_build/Lib/site-packages/pyinstaller-6.10.0.dist-info/RECORD +1076 -0
- package/.venv_build/Lib/site-packages/pyinstaller-6.10.0.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/pyinstaller-6.10.0.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/pyinstaller-6.10.0.dist-info/entry_points.txt +7 -0
- package/.venv_build/Lib/site-packages/pyinstaller-6.10.0.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/pyinstaller_hooks_contrib-2026.0.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/pyinstaller_hooks_contrib-2026.0.dist-info/METADATA +374 -0
- package/.venv_build/Lib/site-packages/pyinstaller_hooks_contrib-2026.0.dist-info/RECORD +1409 -0
- package/.venv_build/Lib/site-packages/pyinstaller_hooks_contrib-2026.0.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/pyinstaller_hooks_contrib-2026.0.dist-info/entry_points.txt +2 -0
- package/.venv_build/Lib/site-packages/pyinstaller_hooks_contrib-2026.0.dist-info/licenses/LICENSE +521 -0
- package/.venv_build/Lib/site-packages/pyinstaller_hooks_contrib-2026.0.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/pyreadline3/__init__.py +37 -0
- package/.venv_build/Lib/site-packages/pyreadline3/clipboard/__init__.py +16 -0
- package/.venv_build/Lib/site-packages/pyreadline3/clipboard/api.py +27 -0
- package/.venv_build/Lib/site-packages/pyreadline3/clipboard/get_clipboard_text_and_convert.py +75 -0
- package/.venv_build/Lib/site-packages/pyreadline3/clipboard/ironpython_clipboard.py +31 -0
- package/.venv_build/Lib/site-packages/pyreadline3/clipboard/no_clipboard.py +19 -0
- package/.venv_build/Lib/site-packages/pyreadline3/clipboard/obsolete.py +30 -0
- package/.venv_build/Lib/site-packages/pyreadline3/clipboard/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pyreadline3/clipboard/win32_clipboard.py +157 -0
- package/.venv_build/Lib/site-packages/pyreadline3/configuration/pyreadlineconfig.ini +89 -0
- package/.venv_build/Lib/site-packages/pyreadline3/configuration/startup.py +38 -0
- package/.venv_build/Lib/site-packages/pyreadline3/console/__init__.py +16 -0
- package/.venv_build/Lib/site-packages/pyreadline3/console/ansi.py +253 -0
- package/.venv_build/Lib/site-packages/pyreadline3/console/console.py +901 -0
- package/.venv_build/Lib/site-packages/pyreadline3/console/console_attributes.py +15 -0
- package/.venv_build/Lib/site-packages/pyreadline3/console/consolebase.py +50 -0
- package/.venv_build/Lib/site-packages/pyreadline3/console/event.py +37 -0
- package/.venv_build/Lib/site-packages/pyreadline3/console/ironpython_console.py +469 -0
- package/.venv_build/Lib/site-packages/pyreadline3/error.py +16 -0
- package/.venv_build/Lib/site-packages/pyreadline3/get_doc.py +22 -0
- package/.venv_build/Lib/site-packages/pyreadline3/keysyms/__init__.py +14 -0
- package/.venv_build/Lib/site-packages/pyreadline3/keysyms/common.py +198 -0
- package/.venv_build/Lib/site-packages/pyreadline3/keysyms/ironpython_keysyms.py +213 -0
- package/.venv_build/Lib/site-packages/pyreadline3/keysyms/keysyms.py +138 -0
- package/.venv_build/Lib/site-packages/pyreadline3/keysyms/winconstants.py +172 -0
- package/.venv_build/Lib/site-packages/pyreadline3/lineeditor/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/pyreadline3/lineeditor/history.py +284 -0
- package/.venv_build/Lib/site-packages/pyreadline3/lineeditor/lineobj.py +866 -0
- package/.venv_build/Lib/site-packages/pyreadline3/lineeditor/wordmatcher.py +124 -0
- package/.venv_build/Lib/site-packages/pyreadline3/logger/__init__.py +26 -0
- package/.venv_build/Lib/site-packages/pyreadline3/logger/control.py +75 -0
- package/.venv_build/Lib/site-packages/pyreadline3/logger/log.py +18 -0
- package/.venv_build/Lib/site-packages/pyreadline3/logger/logger.py +20 -0
- package/.venv_build/Lib/site-packages/pyreadline3/logger/null_handler.py +16 -0
- package/.venv_build/Lib/site-packages/pyreadline3/logger/py.typed +0 -0
- package/.venv_build/Lib/site-packages/pyreadline3/logger/socket_stream.py +35 -0
- package/.venv_build/Lib/site-packages/pyreadline3/modes/__init__.py +7 -0
- package/.venv_build/Lib/site-packages/pyreadline3/modes/basemode.py +582 -0
- package/.venv_build/Lib/site-packages/pyreadline3/modes/emacs.py +716 -0
- package/.venv_build/Lib/site-packages/pyreadline3/modes/notemacs.py +612 -0
- package/.venv_build/Lib/site-packages/pyreadline3/modes/vi.py +1279 -0
- package/.venv_build/Lib/site-packages/pyreadline3/py3k_compat.py +35 -0
- package/.venv_build/Lib/site-packages/pyreadline3/rlmain.py +632 -0
- package/.venv_build/Lib/site-packages/pyreadline3/unicode_helper.py +53 -0
- package/.venv_build/Lib/site-packages/pyreadline3-3.5.4.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/pyreadline3-3.5.4.dist-info/LICENSE.md +53 -0
- package/.venv_build/Lib/site-packages/pyreadline3-3.5.4.dist-info/METADATA +109 -0
- package/.venv_build/Lib/site-packages/pyreadline3-3.5.4.dist-info/RECORD +94 -0
- package/.venv_build/Lib/site-packages/pyreadline3-3.5.4.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/pyreadline3-3.5.4.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/pyreadline3-3.5.4.dist-info/top_level.txt +2 -0
- package/.venv_build/Lib/site-packages/python_dotenv-1.2.1.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/python_dotenv-1.2.1.dist-info/METADATA +749 -0
- package/.venv_build/Lib/site-packages/python_dotenv-1.2.1.dist-info/RECORD +26 -0
- package/.venv_build/Lib/site-packages/python_dotenv-1.2.1.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/python_dotenv-1.2.1.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/python_dotenv-1.2.1.dist-info/entry_points.txt +2 -0
- package/.venv_build/Lib/site-packages/python_dotenv-1.2.1.dist-info/licenses/LICENSE +27 -0
- package/.venv_build/Lib/site-packages/python_dotenv-1.2.1.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/pywin32_ctypes-0.2.3.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/pywin32_ctypes-0.2.3.dist-info/LICENSE.txt +28 -0
- package/.venv_build/Lib/site-packages/pywin32_ctypes-0.2.3.dist-info/METADATA +134 -0
- package/.venv_build/Lib/site-packages/pywin32_ctypes-0.2.3.dist-info/RECORD +74 -0
- package/.venv_build/Lib/site-packages/pywin32_ctypes-0.2.3.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/pywin32_ctypes-0.2.3.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/questionary/__init__.py +56 -0
- package/.venv_build/Lib/site-packages/questionary/constants.py +57 -0
- package/.venv_build/Lib/site-packages/questionary/form.py +117 -0
- package/.venv_build/Lib/site-packages/questionary/prompt.py +234 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/__init__.py +29 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/autocomplete.py +214 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/checkbox.py +327 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/common.py +670 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/confirm.py +133 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/password.py +61 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/path.py +243 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/press_any_key_to_continue.py +61 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/rawselect.py +79 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/select.py +283 -0
- package/.venv_build/Lib/site-packages/questionary/prompts/text.py +101 -0
- package/.venv_build/Lib/site-packages/questionary/py.typed +0 -0
- package/.venv_build/Lib/site-packages/questionary/question.py +134 -0
- package/.venv_build/Lib/site-packages/questionary/styles.py +15 -0
- package/.venv_build/Lib/site-packages/questionary/utils.py +78 -0
- package/.venv_build/Lib/site-packages/questionary/version.py +1 -0
- package/.venv_build/Lib/site-packages/questionary-2.1.1.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/questionary-2.1.1.dist-info/LICENSE +19 -0
- package/.venv_build/Lib/site-packages/questionary-2.1.1.dist-info/METADATA +143 -0
- package/.venv_build/Lib/site-packages/questionary-2.1.1.dist-info/NOTICE +51 -0
- package/.venv_build/Lib/site-packages/questionary-2.1.1.dist-info/RECORD +46 -0
- package/.venv_build/Lib/site-packages/questionary-2.1.1.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/questionary-2.1.1.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/readline.py +93 -0
- package/.venv_build/Lib/site-packages/requests/__init__.py +184 -0
- package/.venv_build/Lib/site-packages/requests/__version__.py +14 -0
- package/.venv_build/Lib/site-packages/requests/_internal_utils.py +50 -0
- package/.venv_build/Lib/site-packages/requests/adapters.py +696 -0
- package/.venv_build/Lib/site-packages/requests/api.py +157 -0
- package/.venv_build/Lib/site-packages/requests/auth.py +314 -0
- package/.venv_build/Lib/site-packages/requests/certs.py +17 -0
- package/.venv_build/Lib/site-packages/requests/compat.py +106 -0
- package/.venv_build/Lib/site-packages/requests/cookies.py +561 -0
- package/.venv_build/Lib/site-packages/requests/exceptions.py +151 -0
- package/.venv_build/Lib/site-packages/requests/help.py +134 -0
- package/.venv_build/Lib/site-packages/requests/hooks.py +33 -0
- package/.venv_build/Lib/site-packages/requests/models.py +1039 -0
- package/.venv_build/Lib/site-packages/requests/packages.py +23 -0
- package/.venv_build/Lib/site-packages/requests/sessions.py +831 -0
- package/.venv_build/Lib/site-packages/requests/status_codes.py +128 -0
- package/.venv_build/Lib/site-packages/requests/structures.py +99 -0
- package/.venv_build/Lib/site-packages/requests/utils.py +1086 -0
- package/.venv_build/Lib/site-packages/requests-2.32.5.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/requests-2.32.5.dist-info/METADATA +133 -0
- package/.venv_build/Lib/site-packages/requests-2.32.5.dist-info/RECORD +43 -0
- package/.venv_build/Lib/site-packages/requests-2.32.5.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/requests-2.32.5.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/requests-2.32.5.dist-info/licenses/LICENSE +175 -0
- package/.venv_build/Lib/site-packages/requests-2.32.5.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/rich/__init__.py +177 -0
- package/.venv_build/Lib/site-packages/rich/__main__.py +245 -0
- package/.venv_build/Lib/site-packages/rich/_emoji_codes.py +3610 -0
- package/.venv_build/Lib/site-packages/rich/_emoji_replace.py +32 -0
- package/.venv_build/Lib/site-packages/rich/_export_format.py +76 -0
- package/.venv_build/Lib/site-packages/rich/_extension.py +10 -0
- package/.venv_build/Lib/site-packages/rich/_fileno.py +24 -0
- package/.venv_build/Lib/site-packages/rich/_inspect.py +272 -0
- package/.venv_build/Lib/site-packages/rich/_log_render.py +94 -0
- package/.venv_build/Lib/site-packages/rich/_loop.py +43 -0
- package/.venv_build/Lib/site-packages/rich/_null_file.py +69 -0
- package/.venv_build/Lib/site-packages/rich/_palettes.py +309 -0
- package/.venv_build/Lib/site-packages/rich/_pick.py +17 -0
- package/.venv_build/Lib/site-packages/rich/_ratio.py +153 -0
- package/.venv_build/Lib/site-packages/rich/_spinners.py +482 -0
- package/.venv_build/Lib/site-packages/rich/_stack.py +16 -0
- package/.venv_build/Lib/site-packages/rich/_timer.py +19 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/__init__.py +93 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/_versions.py +23 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode10-0-0.py +611 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode11-0-0.py +625 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode12-0-0.py +637 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode12-1-0.py +636 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode13-0-0.py +648 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode14-0-0.py +661 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode15-0-0.py +671 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode15-1-0.py +670 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode16-0-0.py +683 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode17-0-0.py +691 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode4-1-0.py +425 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode5-0-0.py +430 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode5-1-0.py +433 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode5-2-0.py +461 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode6-0-0.py +469 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode6-1-0.py +480 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode6-2-0.py +480 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode6-3-0.py +481 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode7-0-0.py +507 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode8-0-0.py +515 -0
- package/.venv_build/Lib/site-packages/rich/_unicode_data/unicode9-0-0.py +598 -0
- package/.venv_build/Lib/site-packages/rich/_win32_console.py +661 -0
- package/.venv_build/Lib/site-packages/rich/_windows.py +71 -0
- package/.venv_build/Lib/site-packages/rich/_windows_renderer.py +56 -0
- package/.venv_build/Lib/site-packages/rich/_wrap.py +93 -0
- package/.venv_build/Lib/site-packages/rich/abc.py +33 -0
- package/.venv_build/Lib/site-packages/rich/align.py +320 -0
- package/.venv_build/Lib/site-packages/rich/ansi.py +241 -0
- package/.venv_build/Lib/site-packages/rich/bar.py +93 -0
- package/.venv_build/Lib/site-packages/rich/box.py +474 -0
- package/.venv_build/Lib/site-packages/rich/cells.py +331 -0
- package/.venv_build/Lib/site-packages/rich/color.py +621 -0
- package/.venv_build/Lib/site-packages/rich/color_triplet.py +38 -0
- package/.venv_build/Lib/site-packages/rich/columns.py +187 -0
- package/.venv_build/Lib/site-packages/rich/console.py +2684 -0
- package/.venv_build/Lib/site-packages/rich/constrain.py +37 -0
- package/.venv_build/Lib/site-packages/rich/containers.py +167 -0
- package/.venv_build/Lib/site-packages/rich/control.py +219 -0
- package/.venv_build/Lib/site-packages/rich/default_styles.py +195 -0
- package/.venv_build/Lib/site-packages/rich/diagnose.py +39 -0
- package/.venv_build/Lib/site-packages/rich/emoji.py +91 -0
- package/.venv_build/Lib/site-packages/rich/errors.py +34 -0
- package/.venv_build/Lib/site-packages/rich/file_proxy.py +57 -0
- package/.venv_build/Lib/site-packages/rich/filesize.py +88 -0
- package/.venv_build/Lib/site-packages/rich/highlighter.py +232 -0
- package/.venv_build/Lib/site-packages/rich/json.py +139 -0
- package/.venv_build/Lib/site-packages/rich/jupyter.py +101 -0
- package/.venv_build/Lib/site-packages/rich/layout.py +442 -0
- package/.venv_build/Lib/site-packages/rich/live.py +404 -0
- package/.venv_build/Lib/site-packages/rich/live_render.py +116 -0
- package/.venv_build/Lib/site-packages/rich/logging.py +297 -0
- package/.venv_build/Lib/site-packages/rich/markdown.py +793 -0
- package/.venv_build/Lib/site-packages/rich/markup.py +251 -0
- package/.venv_build/Lib/site-packages/rich/measure.py +151 -0
- package/.venv_build/Lib/site-packages/rich/padding.py +141 -0
- package/.venv_build/Lib/site-packages/rich/pager.py +34 -0
- package/.venv_build/Lib/site-packages/rich/palette.py +100 -0
- package/.venv_build/Lib/site-packages/rich/panel.py +317 -0
- package/.venv_build/Lib/site-packages/rich/pretty.py +1016 -0
- package/.venv_build/Lib/site-packages/rich/progress.py +1716 -0
- package/.venv_build/Lib/site-packages/rich/progress_bar.py +223 -0
- package/.venv_build/Lib/site-packages/rich/prompt.py +400 -0
- package/.venv_build/Lib/site-packages/rich/protocol.py +42 -0
- package/.venv_build/Lib/site-packages/rich/py.typed +0 -0
- package/.venv_build/Lib/site-packages/rich/region.py +10 -0
- package/.venv_build/Lib/site-packages/rich/repr.py +149 -0
- package/.venv_build/Lib/site-packages/rich/rule.py +130 -0
- package/.venv_build/Lib/site-packages/rich/scope.py +92 -0
- package/.venv_build/Lib/site-packages/rich/screen.py +54 -0
- package/.venv_build/Lib/site-packages/rich/segment.py +783 -0
- package/.venv_build/Lib/site-packages/rich/spinner.py +132 -0
- package/.venv_build/Lib/site-packages/rich/status.py +131 -0
- package/.venv_build/Lib/site-packages/rich/style.py +792 -0
- package/.venv_build/Lib/site-packages/rich/styled.py +42 -0
- package/.venv_build/Lib/site-packages/rich/syntax.py +985 -0
- package/.venv_build/Lib/site-packages/rich/table.py +1015 -0
- package/.venv_build/Lib/site-packages/rich/terminal_theme.py +153 -0
- package/.venv_build/Lib/site-packages/rich/text.py +1363 -0
- package/.venv_build/Lib/site-packages/rich/theme.py +115 -0
- package/.venv_build/Lib/site-packages/rich/themes.py +5 -0
- package/.venv_build/Lib/site-packages/rich/traceback.py +924 -0
- package/.venv_build/Lib/site-packages/rich/tree.py +257 -0
- package/.venv_build/Lib/site-packages/rich-14.3.2.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/rich-14.3.2.dist-info/LICENSE +19 -0
- package/.venv_build/Lib/site-packages/rich-14.3.2.dist-info/METADATA +479 -0
- package/.venv_build/Lib/site-packages/rich-14.3.2.dist-info/RECORD +207 -0
- package/.venv_build/Lib/site-packages/rich-14.3.2.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/rich-14.3.2.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/setuptools/__init__.py +247 -0
- package/.venv_build/Lib/site-packages/setuptools/_deprecation_warning.py +7 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/__init__.py +24 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/_collections.py +56 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/_functools.py +20 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/_macos_compat.py +12 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/_msvccompiler.py +572 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/archive_util.py +280 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/bcppcompiler.py +408 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/ccompiler.py +1220 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/cmd.py +436 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/__init__.py +25 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/_framework_compat.py +55 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/bdist.py +157 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/bdist_dumb.py +144 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/bdist_rpm.py +615 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/build.py +153 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/build_clib.py +208 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/build_ext.py +787 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/build_py.py +407 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/build_scripts.py +173 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/check.py +151 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/clean.py +76 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/config.py +377 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/install.py +814 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/install_data.py +84 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/install_egg_info.py +91 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/install_headers.py +45 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/install_lib.py +238 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/install_scripts.py +61 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/py37compat.py +31 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/register.py +319 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/sdist.py +531 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/command/upload.py +205 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/config.py +139 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/core.py +291 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/cygwinccompiler.py +364 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/debug.py +5 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/dep_util.py +96 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/dir_util.py +243 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/dist.py +1286 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/errors.py +127 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/extension.py +248 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/fancy_getopt.py +470 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/file_util.py +249 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/filelist.py +371 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/log.py +80 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/msvc9compiler.py +832 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/msvccompiler.py +695 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/py38compat.py +8 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/py39compat.py +22 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/spawn.py +109 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/sysconfig.py +558 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/text_file.py +287 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/unixccompiler.py +401 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/util.py +513 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/version.py +358 -0
- package/.venv_build/Lib/site-packages/setuptools/_distutils/versionpredicate.py +175 -0
- package/.venv_build/Lib/site-packages/setuptools/_entry_points.py +86 -0
- package/.venv_build/Lib/site-packages/setuptools/_imp.py +82 -0
- package/.venv_build/Lib/site-packages/setuptools/_importlib.py +47 -0
- package/.venv_build/Lib/site-packages/setuptools/_itertools.py +23 -0
- package/.venv_build/Lib/site-packages/setuptools/_path.py +29 -0
- package/.venv_build/Lib/site-packages/setuptools/_reqs.py +19 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_metadata/__init__.py +1047 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_metadata/_adapters.py +68 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_metadata/_collections.py +30 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_metadata/_compat.py +71 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_metadata/_functools.py +104 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_metadata/_itertools.py +73 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_metadata/_meta.py +48 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_metadata/_text.py +99 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/__init__.py +36 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/_adapters.py +170 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/_common.py +104 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/_compat.py +98 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/_itertools.py +35 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/_legacy.py +121 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/abc.py +137 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/readers.py +122 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/importlib_resources/simple.py +116 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/jaraco/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/jaraco/context.py +213 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/jaraco/functools.py +525 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/jaraco/text/__init__.py +599 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/more_itertools/__init__.py +4 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/more_itertools/more.py +3824 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/more_itertools/recipes.py +620 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/ordered_set.py +488 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/__about__.py +26 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/__init__.py +25 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/_manylinux.py +301 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/_musllinux.py +136 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/_structures.py +61 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/markers.py +304 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/requirements.py +146 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/specifiers.py +802 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/tags.py +487 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/utils.py +136 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/packaging/version.py +504 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/__init__.py +331 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/actions.py +207 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/common.py +424 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/core.py +5814 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/diagram/__init__.py +642 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/exceptions.py +267 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/helpers.py +1088 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/results.py +760 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/testing.py +331 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/unicode.py +352 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/pyparsing/util.py +235 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/tomli/__init__.py +11 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/tomli/_parser.py +691 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/tomli/_re.py +107 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/tomli/_types.py +10 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/typing_extensions.py +2296 -0
- package/.venv_build/Lib/site-packages/setuptools/_vendor/zipp.py +329 -0
- package/.venv_build/Lib/site-packages/setuptools/archive_util.py +213 -0
- package/.venv_build/Lib/site-packages/setuptools/build_meta.py +511 -0
- package/.venv_build/Lib/site-packages/setuptools/cli-32.exe +0 -0
- package/.venv_build/Lib/site-packages/setuptools/cli-64.exe +0 -0
- package/.venv_build/Lib/site-packages/setuptools/cli-arm64.exe +0 -0
- package/.venv_build/Lib/site-packages/setuptools/cli.exe +0 -0
- package/.venv_build/Lib/site-packages/setuptools/command/__init__.py +12 -0
- package/.venv_build/Lib/site-packages/setuptools/command/alias.py +78 -0
- package/.venv_build/Lib/site-packages/setuptools/command/bdist_egg.py +457 -0
- package/.venv_build/Lib/site-packages/setuptools/command/bdist_rpm.py +40 -0
- package/.venv_build/Lib/site-packages/setuptools/command/build.py +146 -0
- package/.venv_build/Lib/site-packages/setuptools/command/build_clib.py +101 -0
- package/.venv_build/Lib/site-packages/setuptools/command/build_ext.py +383 -0
- package/.venv_build/Lib/site-packages/setuptools/command/build_py.py +368 -0
- package/.venv_build/Lib/site-packages/setuptools/command/develop.py +193 -0
- package/.venv_build/Lib/site-packages/setuptools/command/dist_info.py +142 -0
- package/.venv_build/Lib/site-packages/setuptools/command/easy_install.py +2312 -0
- package/.venv_build/Lib/site-packages/setuptools/command/editable_wheel.py +844 -0
- package/.venv_build/Lib/site-packages/setuptools/command/egg_info.py +763 -0
- package/.venv_build/Lib/site-packages/setuptools/command/install.py +139 -0
- package/.venv_build/Lib/site-packages/setuptools/command/install_egg_info.py +63 -0
- package/.venv_build/Lib/site-packages/setuptools/command/install_lib.py +122 -0
- package/.venv_build/Lib/site-packages/setuptools/command/install_scripts.py +70 -0
- package/.venv_build/Lib/site-packages/setuptools/command/launcher manifest.xml +15 -0
- package/.venv_build/Lib/site-packages/setuptools/command/py36compat.py +134 -0
- package/.venv_build/Lib/site-packages/setuptools/command/register.py +18 -0
- package/.venv_build/Lib/site-packages/setuptools/command/rotate.py +64 -0
- package/.venv_build/Lib/site-packages/setuptools/command/saveopts.py +22 -0
- package/.venv_build/Lib/site-packages/setuptools/command/sdist.py +210 -0
- package/.venv_build/Lib/site-packages/setuptools/command/setopt.py +149 -0
- package/.venv_build/Lib/site-packages/setuptools/command/test.py +251 -0
- package/.venv_build/Lib/site-packages/setuptools/command/upload.py +17 -0
- package/.venv_build/Lib/site-packages/setuptools/command/upload_docs.py +213 -0
- package/.venv_build/Lib/site-packages/setuptools/config/__init__.py +35 -0
- package/.venv_build/Lib/site-packages/setuptools/config/_apply_pyprojecttoml.py +377 -0
- package/.venv_build/Lib/site-packages/setuptools/config/_validate_pyproject/__init__.py +34 -0
- package/.venv_build/Lib/site-packages/setuptools/config/_validate_pyproject/error_reporting.py +318 -0
- package/.venv_build/Lib/site-packages/setuptools/config/_validate_pyproject/extra_validations.py +36 -0
- package/.venv_build/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_exceptions.py +51 -0
- package/.venv_build/Lib/site-packages/setuptools/config/_validate_pyproject/fastjsonschema_validations.py +1035 -0
- package/.venv_build/Lib/site-packages/setuptools/config/_validate_pyproject/formats.py +259 -0
- package/.venv_build/Lib/site-packages/setuptools/config/expand.py +462 -0
- package/.venv_build/Lib/site-packages/setuptools/config/pyprojecttoml.py +493 -0
- package/.venv_build/Lib/site-packages/setuptools/config/setupcfg.py +762 -0
- package/.venv_build/Lib/site-packages/setuptools/dep_util.py +25 -0
- package/.venv_build/Lib/site-packages/setuptools/depends.py +176 -0
- package/.venv_build/Lib/site-packages/setuptools/discovery.py +600 -0
- package/.venv_build/Lib/site-packages/setuptools/dist.py +1222 -0
- package/.venv_build/Lib/site-packages/setuptools/errors.py +58 -0
- package/.venv_build/Lib/site-packages/setuptools/extension.py +148 -0
- package/.venv_build/Lib/site-packages/setuptools/extern/__init__.py +76 -0
- package/.venv_build/Lib/site-packages/setuptools/glob.py +167 -0
- package/.venv_build/Lib/site-packages/setuptools/gui-32.exe +0 -0
- package/.venv_build/Lib/site-packages/setuptools/gui-64.exe +0 -0
- package/.venv_build/Lib/site-packages/setuptools/gui-arm64.exe +0 -0
- package/.venv_build/Lib/site-packages/setuptools/gui.exe +0 -0
- package/.venv_build/Lib/site-packages/setuptools/installer.py +104 -0
- package/.venv_build/Lib/site-packages/setuptools/launch.py +36 -0
- package/.venv_build/Lib/site-packages/setuptools/logging.py +36 -0
- package/.venv_build/Lib/site-packages/setuptools/monkey.py +165 -0
- package/.venv_build/Lib/site-packages/setuptools/msvc.py +1703 -0
- package/.venv_build/Lib/site-packages/setuptools/namespaces.py +107 -0
- package/.venv_build/Lib/site-packages/setuptools/package_index.py +1126 -0
- package/.venv_build/Lib/site-packages/setuptools/py34compat.py +13 -0
- package/.venv_build/Lib/site-packages/setuptools/sandbox.py +530 -0
- package/.venv_build/Lib/site-packages/setuptools/script (dev).tmpl +6 -0
- package/.venv_build/Lib/site-packages/setuptools/script.tmpl +3 -0
- package/.venv_build/Lib/site-packages/setuptools/unicode_utils.py +42 -0
- package/.venv_build/Lib/site-packages/setuptools/version.py +6 -0
- package/.venv_build/Lib/site-packages/setuptools/wheel.py +222 -0
- package/.venv_build/Lib/site-packages/setuptools/windows_support.py +29 -0
- package/.venv_build/Lib/site-packages/setuptools-65.5.0.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/setuptools-65.5.0.dist-info/LICENSE +19 -0
- package/.venv_build/Lib/site-packages/setuptools-65.5.0.dist-info/METADATA +144 -0
- package/.venv_build/Lib/site-packages/setuptools-65.5.0.dist-info/RECORD +466 -0
- package/.venv_build/Lib/site-packages/setuptools-65.5.0.dist-info/REQUESTED +0 -0
- package/.venv_build/Lib/site-packages/setuptools-65.5.0.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/setuptools-65.5.0.dist-info/entry_points.txt +57 -0
- package/.venv_build/Lib/site-packages/setuptools-65.5.0.dist-info/top_level.txt +3 -0
- package/.venv_build/Lib/site-packages/smmap/__init__.py +11 -0
- package/.venv_build/Lib/site-packages/smmap/buf.py +143 -0
- package/.venv_build/Lib/site-packages/smmap/mman.py +588 -0
- package/.venv_build/Lib/site-packages/smmap/test/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/smmap/test/lib.py +72 -0
- package/.venv_build/Lib/site-packages/smmap/test/test_buf.py +126 -0
- package/.venv_build/Lib/site-packages/smmap/test/test_mman.py +224 -0
- package/.venv_build/Lib/site-packages/smmap/test/test_tutorial.py +75 -0
- package/.venv_build/Lib/site-packages/smmap/test/test_util.py +105 -0
- package/.venv_build/Lib/site-packages/smmap/util.py +222 -0
- package/.venv_build/Lib/site-packages/smmap-5.0.2.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/smmap-5.0.2.dist-info/LICENSE +30 -0
- package/.venv_build/Lib/site-packages/smmap-5.0.2.dist-info/METADATA +113 -0
- package/.venv_build/Lib/site-packages/smmap-5.0.2.dist-info/RECORD +27 -0
- package/.venv_build/Lib/site-packages/smmap-5.0.2.dist-info/WHEEL +5 -0
- package/.venv_build/Lib/site-packages/smmap-5.0.2.dist-info/top_level.txt +1 -0
- package/.venv_build/Lib/site-packages/smmap-5.0.2.dist-info/zip-safe +1 -0
- package/.venv_build/Lib/site-packages/urllib3/__init__.py +211 -0
- package/.venv_build/Lib/site-packages/urllib3/_base_connection.py +165 -0
- package/.venv_build/Lib/site-packages/urllib3/_collections.py +487 -0
- package/.venv_build/Lib/site-packages/urllib3/_request_methods.py +278 -0
- package/.venv_build/Lib/site-packages/urllib3/_version.py +34 -0
- package/.venv_build/Lib/site-packages/urllib3/connection.py +1099 -0
- package/.venv_build/Lib/site-packages/urllib3/connectionpool.py +1178 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/__init__.py +0 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/emscripten/__init__.py +17 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/emscripten/connection.py +260 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/emscripten/emscripten_fetch_worker.js +110 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/emscripten/fetch.py +726 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/emscripten/request.py +22 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/emscripten/response.py +277 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/pyopenssl.py +564 -0
- package/.venv_build/Lib/site-packages/urllib3/contrib/socks.py +228 -0
- package/.venv_build/Lib/site-packages/urllib3/exceptions.py +335 -0
- package/.venv_build/Lib/site-packages/urllib3/fields.py +341 -0
- package/.venv_build/Lib/site-packages/urllib3/filepost.py +89 -0
- package/.venv_build/Lib/site-packages/urllib3/http2/__init__.py +53 -0
- package/.venv_build/Lib/site-packages/urllib3/http2/connection.py +356 -0
- package/.venv_build/Lib/site-packages/urllib3/http2/probe.py +87 -0
- package/.venv_build/Lib/site-packages/urllib3/poolmanager.py +651 -0
- package/.venv_build/Lib/site-packages/urllib3/py.typed +2 -0
- package/.venv_build/Lib/site-packages/urllib3/response.py +1480 -0
- package/.venv_build/Lib/site-packages/urllib3/util/__init__.py +42 -0
- package/.venv_build/Lib/site-packages/urllib3/util/connection.py +137 -0
- package/.venv_build/Lib/site-packages/urllib3/util/proxy.py +43 -0
- package/.venv_build/Lib/site-packages/urllib3/util/request.py +263 -0
- package/.venv_build/Lib/site-packages/urllib3/util/response.py +101 -0
- package/.venv_build/Lib/site-packages/urllib3/util/retry.py +549 -0
- package/.venv_build/Lib/site-packages/urllib3/util/ssl_.py +527 -0
- package/.venv_build/Lib/site-packages/urllib3/util/ssl_match_hostname.py +159 -0
- package/.venv_build/Lib/site-packages/urllib3/util/ssltransport.py +271 -0
- package/.venv_build/Lib/site-packages/urllib3/util/timeout.py +275 -0
- package/.venv_build/Lib/site-packages/urllib3/util/url.py +469 -0
- package/.venv_build/Lib/site-packages/urllib3/util/util.py +42 -0
- package/.venv_build/Lib/site-packages/urllib3/util/wait.py +124 -0
- package/.venv_build/Lib/site-packages/urllib3-2.6.3.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/urllib3-2.6.3.dist-info/METADATA +164 -0
- package/.venv_build/Lib/site-packages/urllib3-2.6.3.dist-info/RECORD +79 -0
- package/.venv_build/Lib/site-packages/urllib3-2.6.3.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/urllib3-2.6.3.dist-info/licenses/LICENSE.txt +21 -0
- package/.venv_build/Lib/site-packages/wcwidth/__init__.py +43 -0
- package/.venv_build/Lib/site-packages/wcwidth/bisearch.py +29 -0
- package/.venv_build/Lib/site-packages/wcwidth/control_codes.py +46 -0
- package/.venv_build/Lib/site-packages/wcwidth/escape_sequences.py +69 -0
- package/.venv_build/Lib/site-packages/wcwidth/grapheme.py +428 -0
- package/.venv_build/Lib/site-packages/wcwidth/py.typed +0 -0
- package/.venv_build/Lib/site-packages/wcwidth/sgr_state.py +338 -0
- package/.venv_build/Lib/site-packages/wcwidth/table_ambiguous.py +189 -0
- package/.venv_build/Lib/site-packages/wcwidth/table_grapheme.py +2294 -0
- package/.venv_build/Lib/site-packages/wcwidth/table_mc.py +206 -0
- package/.venv_build/Lib/site-packages/wcwidth/table_vs16.py +126 -0
- package/.venv_build/Lib/site-packages/wcwidth/table_wide.py +138 -0
- package/.venv_build/Lib/site-packages/wcwidth/table_zero.py +350 -0
- package/.venv_build/Lib/site-packages/wcwidth/textwrap.py +656 -0
- package/.venv_build/Lib/site-packages/wcwidth/unicode_versions.py +21 -0
- package/.venv_build/Lib/site-packages/wcwidth/wcwidth.py +1030 -0
- package/.venv_build/Lib/site-packages/wcwidth-0.6.0.dist-info/INSTALLER +1 -0
- package/.venv_build/Lib/site-packages/wcwidth-0.6.0.dist-info/METADATA +776 -0
- package/.venv_build/Lib/site-packages/wcwidth-0.6.0.dist-info/RECORD +36 -0
- package/.venv_build/Lib/site-packages/wcwidth-0.6.0.dist-info/WHEEL +4 -0
- package/.venv_build/Lib/site-packages/wcwidth-0.6.0.dist-info/licenses/LICENSE +27 -0
- package/.venv_build/Lib/site-packages/win32ctypes/__init__.py +8 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/__init__.py +60 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/_winerrors.py +9 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/__init__.py +11 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/_authentication.py +172 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/_common.py +29 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/_dll.py +30 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/_nl_support.py +18 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/_resource.py +132 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/_system_information.py +32 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/_time.py +18 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/cffi/_util.py +105 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/compat.py +10 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/__init__.py +11 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/_authentication.py +122 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/_common.py +53 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/_dll.py +21 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/_nl_support.py +12 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/_resource.py +148 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/_system_information.py +36 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/_time.py +15 -0
- package/.venv_build/Lib/site-packages/win32ctypes/core/ctypes/_util.py +78 -0
- package/.venv_build/Lib/site-packages/win32ctypes/pywin32/__init__.py +12 -0
- package/.venv_build/Lib/site-packages/win32ctypes/pywin32/pywintypes.py +67 -0
- package/.venv_build/Lib/site-packages/win32ctypes/pywin32/win32api.py +294 -0
- package/.venv_build/Lib/site-packages/win32ctypes/pywin32/win32cred.py +145 -0
- package/.venv_build/Lib/site-packages/win32ctypes/pywintypes.py +13 -0
- package/.venv_build/Lib/site-packages/win32ctypes/tests/__init__.py +21 -0
- package/.venv_build/Lib/site-packages/win32ctypes/tests/test_backends.py +36 -0
- package/.venv_build/Lib/site-packages/win32ctypes/tests/test_win32api.py +304 -0
- package/.venv_build/Lib/site-packages/win32ctypes/tests/test_win32cred.py +230 -0
- package/.venv_build/Lib/site-packages/win32ctypes/version.py +1 -0
- package/.venv_build/Lib/site-packages/win32ctypes/win32api.py +13 -0
- package/.venv_build/Lib/site-packages/win32ctypes/win32cred.py +13 -0
- package/.venv_build/Scripts/Activate.ps1 +247 -0
- package/.venv_build/Scripts/activate +63 -0
- package/.venv_build/Scripts/activate.bat +34 -0
- package/.venv_build/Scripts/deactivate.bat +22 -0
- package/.venv_build/Scripts/dotenv.exe +0 -0
- package/.venv_build/Scripts/markdown-it.exe +0 -0
- package/.venv_build/Scripts/normalizer.exe +0 -0
- package/.venv_build/Scripts/pip.exe +0 -0
- package/.venv_build/Scripts/pip3.11.exe +0 -0
- package/.venv_build/Scripts/pip3.exe +0 -0
- package/.venv_build/Scripts/pygmentize.exe +0 -0
- package/.venv_build/Scripts/pyi-archive_viewer.exe +0 -0
- package/.venv_build/Scripts/pyi-bindepend.exe +0 -0
- package/.venv_build/Scripts/pyi-grab_version.exe +0 -0
- package/.venv_build/Scripts/pyi-makespec.exe +0 -0
- package/.venv_build/Scripts/pyi-set_version.exe +0 -0
- package/.venv_build/Scripts/pyinstaller.exe +0 -0
- package/.venv_build/Scripts/python.exe +0 -0
- package/.venv_build/Scripts/pythonw.exe +0 -0
- package/.venv_build/pyvenv.cfg +5 -0
- package/Playground/.nova/backups/PLAN.md.20260217_181832.bak +41 -0
- package/Playground/.nova/backups/PLAN.md.20260221_130328.bak +35 -0
- package/Playground/PLAN.md +63 -38
- package/Playground/calc/README.md +28 -0
- package/Playground/calc/calc.py +81 -0
- package/nova_cli/cli/shell.py +13 -8
- package/nova_cli/local/file_manager/commands.py +2 -2
- package/nova_cli/local/file_manager/edit_ops.py +5 -4
- package/nova_cli/local/file_manager/git_ops.py +76 -42
- package/nova_cli/local/file_manager/io_ops.py +13 -3
- package/nova_cli/local/ui.py +19 -11
- package/package.json +8 -3
- package/pkg_root/usr/local/bin/nova +0 -0
- package/pyproject.toml +2 -2
- package/requirements.txt +2 -1
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
#-----------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) 2005-2023, PyInstaller Development Team.
|
|
3
|
+
#
|
|
4
|
+
# Distributed under the terms of the GNU General Public License (version 2
|
|
5
|
+
# or later) with exception for distributing the bootloader.
|
|
6
|
+
#
|
|
7
|
+
# The full license is in the file COPYING.txt, distributed with this software.
|
|
8
|
+
#
|
|
9
|
+
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
|
10
|
+
#-----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
__all__ = ('HOMEPATH', 'PLATFORM', '__version__', 'DEFAULT_DISTPATH', 'DEFAULT_SPECPATH', 'DEFAULT_WORKPATH')
|
|
13
|
+
|
|
14
|
+
import os
|
|
15
|
+
import sys
|
|
16
|
+
|
|
17
|
+
from PyInstaller import compat
|
|
18
|
+
from PyInstaller.utils.git import get_repo_revision
|
|
19
|
+
|
|
20
|
+
# Note: Keep this variable as plain string so it could be updated automatically when doing a release.
|
|
21
|
+
__version__ = '6.10.0'
|
|
22
|
+
|
|
23
|
+
# Absolute path of this package's directory. Save this early so all submodules can use the absolute path. This is
|
|
24
|
+
# required for example if the current directory changes prior to loading the hooks.
|
|
25
|
+
PACKAGEPATH = os.path.abspath(os.path.dirname(__file__))
|
|
26
|
+
|
|
27
|
+
HOMEPATH = os.path.dirname(PACKAGEPATH)
|
|
28
|
+
|
|
29
|
+
# Update __version__ as necessary.
|
|
30
|
+
if os.path.exists(os.path.join(HOMEPATH, 'setup.py')):
|
|
31
|
+
# PyInstaller is run directly from source without installation, or __version__ is called from 'setup.py'...
|
|
32
|
+
if compat.getenv('PYINSTALLER_DO_RELEASE') == '1':
|
|
33
|
+
# Suppress the git revision when doing a release.
|
|
34
|
+
pass
|
|
35
|
+
elif 'sdist' not in sys.argv:
|
|
36
|
+
# and 'setup.py' was not called with 'sdist' argument. For creating source tarball we do not want git revision
|
|
37
|
+
# in the filename.
|
|
38
|
+
try:
|
|
39
|
+
__version__ += get_repo_revision()
|
|
40
|
+
except Exception:
|
|
41
|
+
# Write to stderr because stdout is used for eval() statement in some subprocesses.
|
|
42
|
+
sys.stderr.write('WARN: failed to parse git revision')
|
|
43
|
+
else:
|
|
44
|
+
# PyInstaller was installed by `python setup.py install'.
|
|
45
|
+
from importlib.metadata import version
|
|
46
|
+
__version__ = version('PyInstaller')
|
|
47
|
+
# Default values of paths where to put files created by PyInstaller. If changing these, do not forget to update the
|
|
48
|
+
# help text for corresponding command-line options, defined in build_main.
|
|
49
|
+
|
|
50
|
+
# Where to put created .spec file.
|
|
51
|
+
DEFAULT_SPECPATH = os.getcwd()
|
|
52
|
+
# Where to put the final frozen application.
|
|
53
|
+
DEFAULT_DISTPATH = os.path.join(os.getcwd(), 'dist')
|
|
54
|
+
# Where to put all the temporary files; .log, .pyz, etc.
|
|
55
|
+
DEFAULT_WORKPATH = os.path.join(os.getcwd(), 'build')
|
|
56
|
+
|
|
57
|
+
PLATFORM = compat.system + '-' + compat.architecture
|
|
58
|
+
# Include machine name in path to bootloader for some machines (e.g., 'arm'). Explicitly avoid doing this on macOS,
|
|
59
|
+
# where we keep universal2 bootloaders in Darwin-64bit folder regardless of whether we are on x86_64 or arm64.
|
|
60
|
+
if compat.machine and not compat.is_darwin:
|
|
61
|
+
PLATFORM += '-' + compat.machine
|
|
62
|
+
# Similarly, disambiguate musl Linux from glibc Linux.
|
|
63
|
+
if compat.is_musl:
|
|
64
|
+
PLATFORM += '-musl'
|
|
@@ -0,0 +1,308 @@
|
|
|
1
|
+
#-----------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
|
3
|
+
#
|
|
4
|
+
# Distributed under the terms of the GNU General Public License (version 2
|
|
5
|
+
# or later) with exception for distributing the bootloader.
|
|
6
|
+
#
|
|
7
|
+
# The full license is in the file COPYING.txt, distributed with this software.
|
|
8
|
+
#
|
|
9
|
+
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
|
10
|
+
#-----------------------------------------------------------------------------
|
|
11
|
+
"""
|
|
12
|
+
Main command-line interface to PyInstaller.
|
|
13
|
+
"""
|
|
14
|
+
from __future__ import annotations
|
|
15
|
+
|
|
16
|
+
import argparse
|
|
17
|
+
import os
|
|
18
|
+
import platform
|
|
19
|
+
import sys
|
|
20
|
+
import pathlib
|
|
21
|
+
from collections import defaultdict
|
|
22
|
+
|
|
23
|
+
from PyInstaller import __version__
|
|
24
|
+
from PyInstaller import log as logging
|
|
25
|
+
# Note: do not import anything else until compat.check_requirements function is run!
|
|
26
|
+
from PyInstaller import compat
|
|
27
|
+
|
|
28
|
+
try:
|
|
29
|
+
from argcomplete import autocomplete
|
|
30
|
+
except ImportError:
|
|
31
|
+
|
|
32
|
+
def autocomplete(parser):
|
|
33
|
+
return None
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
logger = logging.getLogger(__name__)
|
|
37
|
+
|
|
38
|
+
# Taken from https://stackoverflow.com/a/22157136 to format args more flexibly: any help text which beings with ``R|``
|
|
39
|
+
# will have all newlines preserved; the help text will be line wrapped. See
|
|
40
|
+
# https://docs.python.org/3/library/argparse.html#formatter-class.
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
# This is used by the ``--debug`` option.
|
|
44
|
+
class _SmartFormatter(argparse.HelpFormatter):
|
|
45
|
+
def _split_lines(self, text, width):
|
|
46
|
+
if text.startswith('R|'):
|
|
47
|
+
# The underlying implementation of ``RawTextHelpFormatter._split_lines`` invokes this; mimic it.
|
|
48
|
+
return text[2:].splitlines()
|
|
49
|
+
else:
|
|
50
|
+
# Invoke the usual formatter.
|
|
51
|
+
return super()._split_lines(text, width)
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
def run_makespec(filenames, **opts):
|
|
55
|
+
# Split pathex by using the path separator
|
|
56
|
+
temppaths = opts['pathex'][:]
|
|
57
|
+
pathex = opts['pathex'] = []
|
|
58
|
+
for p in temppaths:
|
|
59
|
+
pathex.extend(p.split(os.pathsep))
|
|
60
|
+
|
|
61
|
+
import PyInstaller.building.makespec
|
|
62
|
+
|
|
63
|
+
spec_file = PyInstaller.building.makespec.main(filenames, **opts)
|
|
64
|
+
logger.info('wrote %s' % spec_file)
|
|
65
|
+
return spec_file
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
def run_build(pyi_config, spec_file, **kwargs):
|
|
69
|
+
import PyInstaller.building.build_main
|
|
70
|
+
PyInstaller.building.build_main.main(pyi_config, spec_file, **kwargs)
|
|
71
|
+
|
|
72
|
+
|
|
73
|
+
def __add_options(parser):
|
|
74
|
+
parser.add_argument(
|
|
75
|
+
'-v',
|
|
76
|
+
'--version',
|
|
77
|
+
action='version',
|
|
78
|
+
version=__version__,
|
|
79
|
+
help='Show program version info and exit.',
|
|
80
|
+
)
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
class _PyiArgumentParser(argparse.ArgumentParser):
|
|
84
|
+
def __init__(self, *args, **kwargs):
|
|
85
|
+
self._pyi_action_groups = defaultdict(list)
|
|
86
|
+
super().__init__(*args, **kwargs)
|
|
87
|
+
|
|
88
|
+
def _add_options(self, __add_options: callable, name: str = ""):
|
|
89
|
+
"""
|
|
90
|
+
Mutate self with the given callable, storing any new actions added in a named group
|
|
91
|
+
"""
|
|
92
|
+
n_actions_before = len(getattr(self, "_actions", []))
|
|
93
|
+
__add_options(self) # preserves old behavior
|
|
94
|
+
new_actions = getattr(self, "_actions", [])[n_actions_before:]
|
|
95
|
+
self._pyi_action_groups[name].extend(new_actions)
|
|
96
|
+
|
|
97
|
+
def _option_name(self, action):
|
|
98
|
+
"""
|
|
99
|
+
Get the option name(s) associated with an action
|
|
100
|
+
|
|
101
|
+
For options that define both short and long names, this function will
|
|
102
|
+
return the long names joined by "/"
|
|
103
|
+
"""
|
|
104
|
+
longnames = [name for name in action.option_strings if name.startswith("--")]
|
|
105
|
+
if longnames:
|
|
106
|
+
name = "/".join(longnames)
|
|
107
|
+
else:
|
|
108
|
+
name = action.option_strings[0]
|
|
109
|
+
return name
|
|
110
|
+
|
|
111
|
+
def _forbid_options(self, args: argparse.Namespace, group: str, errmsg: str = ""):
|
|
112
|
+
"""Forbid options from a named action group"""
|
|
113
|
+
options = defaultdict(str)
|
|
114
|
+
for action in self._pyi_action_groups[group]:
|
|
115
|
+
dest = action.dest
|
|
116
|
+
name = self._option_name(action)
|
|
117
|
+
if getattr(args, dest) is not self.get_default(dest):
|
|
118
|
+
if dest in options:
|
|
119
|
+
options[dest] += "/"
|
|
120
|
+
options[dest] += name
|
|
121
|
+
|
|
122
|
+
# if any options from the forbidden group are not the default values,
|
|
123
|
+
# the user must have passed them in, so issue an error report
|
|
124
|
+
if options:
|
|
125
|
+
sep = "\n "
|
|
126
|
+
bad = sep.join(options.values())
|
|
127
|
+
if errmsg:
|
|
128
|
+
errmsg = "\n" + errmsg
|
|
129
|
+
raise SystemExit(f"option(s) not allowed:{sep}{bad}{errmsg}")
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
def generate_parser() -> _PyiArgumentParser:
|
|
133
|
+
"""
|
|
134
|
+
Build an argparse parser for PyInstaller's main CLI.
|
|
135
|
+
"""
|
|
136
|
+
|
|
137
|
+
import PyInstaller.building.build_main
|
|
138
|
+
import PyInstaller.building.makespec
|
|
139
|
+
import PyInstaller.log
|
|
140
|
+
|
|
141
|
+
parser = _PyiArgumentParser(formatter_class=_SmartFormatter)
|
|
142
|
+
parser.prog = "pyinstaller"
|
|
143
|
+
|
|
144
|
+
parser._add_options(__add_options)
|
|
145
|
+
parser._add_options(PyInstaller.building.makespec.__add_options, name="makespec")
|
|
146
|
+
parser._add_options(PyInstaller.building.build_main.__add_options, name="build_main")
|
|
147
|
+
parser._add_options(PyInstaller.log.__add_options, name="log")
|
|
148
|
+
|
|
149
|
+
parser.add_argument(
|
|
150
|
+
'filenames',
|
|
151
|
+
metavar='scriptname',
|
|
152
|
+
nargs='+',
|
|
153
|
+
help="Name of scriptfiles to be processed or exactly one .spec file. If a .spec file is specified, most "
|
|
154
|
+
"options are unnecessary and are ignored.",
|
|
155
|
+
)
|
|
156
|
+
|
|
157
|
+
return parser
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
def run(pyi_args: list | None = None, pyi_config: dict | None = None):
|
|
161
|
+
"""
|
|
162
|
+
pyi_args allows running PyInstaller programmatically without a subprocess
|
|
163
|
+
pyi_config allows checking configuration once when running multiple tests
|
|
164
|
+
"""
|
|
165
|
+
compat.check_requirements()
|
|
166
|
+
check_unsafe_privileges()
|
|
167
|
+
|
|
168
|
+
import PyInstaller.log
|
|
169
|
+
|
|
170
|
+
old_sys_argv = sys.argv
|
|
171
|
+
try:
|
|
172
|
+
parser = generate_parser()
|
|
173
|
+
autocomplete(parser)
|
|
174
|
+
if pyi_args is None:
|
|
175
|
+
pyi_args = sys.argv[1:]
|
|
176
|
+
try:
|
|
177
|
+
index = pyi_args.index("--")
|
|
178
|
+
except ValueError:
|
|
179
|
+
index = len(pyi_args)
|
|
180
|
+
args = parser.parse_args(pyi_args[:index])
|
|
181
|
+
spec_args = pyi_args[index + 1:]
|
|
182
|
+
PyInstaller.log.__process_options(parser, args)
|
|
183
|
+
|
|
184
|
+
# Print PyInstaller version, Python version, and platform as the first line to stdout. This helps us identify
|
|
185
|
+
# PyInstaller, Python, and platform version when users report issues.
|
|
186
|
+
try:
|
|
187
|
+
from _pyinstaller_hooks_contrib import __version__ as contrib_hooks_version
|
|
188
|
+
except Exception:
|
|
189
|
+
contrib_hooks_version = 'unknown'
|
|
190
|
+
|
|
191
|
+
logger.info('PyInstaller: %s, contrib hooks: %s', __version__, contrib_hooks_version)
|
|
192
|
+
logger.info('Python: %s%s', platform.python_version(), " (conda)" if compat.is_conda else "")
|
|
193
|
+
logger.info('Platform: %s', platform.platform())
|
|
194
|
+
logger.info('Python environment: %s', sys.prefix)
|
|
195
|
+
|
|
196
|
+
# Skip creating .spec when .spec file is supplied.
|
|
197
|
+
if args.filenames[0].endswith('.spec'):
|
|
198
|
+
parser._forbid_options(
|
|
199
|
+
args, group="makespec", errmsg="makespec options not valid when a .spec file is given"
|
|
200
|
+
)
|
|
201
|
+
spec_file = args.filenames[0]
|
|
202
|
+
else:
|
|
203
|
+
# Ensure that the given script files exist, before trying to generate the .spec file.
|
|
204
|
+
# This prevents us from overwriting an existing (and customized) .spec file if user makes a typo in the
|
|
205
|
+
# .spec file's suffix when trying to build it, for example, `pyinstaller program.cpes` (see #8276).
|
|
206
|
+
# It also prevents creation of a .spec file when `pyinstaller program.py` is accidentally ran from a
|
|
207
|
+
# directory that does not contain the script (for example, due to failing to change the directory prior
|
|
208
|
+
# to running the command).
|
|
209
|
+
for filename in args.filenames:
|
|
210
|
+
if not os.path.isfile(filename):
|
|
211
|
+
raise SystemExit(f"Script file {filename!r} does not exist.")
|
|
212
|
+
spec_file = run_makespec(**vars(args))
|
|
213
|
+
|
|
214
|
+
sys.argv = [spec_file, *spec_args]
|
|
215
|
+
run_build(pyi_config, spec_file, **vars(args))
|
|
216
|
+
|
|
217
|
+
except KeyboardInterrupt:
|
|
218
|
+
raise SystemExit("Aborted by user request.")
|
|
219
|
+
except RecursionError:
|
|
220
|
+
from PyInstaller import _recursion_too_deep_message
|
|
221
|
+
_recursion_too_deep_message.raise_with_msg()
|
|
222
|
+
finally:
|
|
223
|
+
sys.argv = old_sys_argv
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
def _console_script_run():
|
|
227
|
+
# Python prepends the main script's parent directory to sys.path. When PyInstaller is ran via the usual
|
|
228
|
+
# `pyinstaller` CLI entry point, this directory is $pythonprefix/bin which should not be in sys.path.
|
|
229
|
+
if os.path.basename(sys.path[0]) in ("bin", "Scripts"):
|
|
230
|
+
sys.path.pop(0)
|
|
231
|
+
run()
|
|
232
|
+
|
|
233
|
+
|
|
234
|
+
def check_unsafe_privileges():
|
|
235
|
+
"""
|
|
236
|
+
Forbid dangerous usage of PyInstaller with escalated privileges
|
|
237
|
+
"""
|
|
238
|
+
if compat.is_win:
|
|
239
|
+
# Discourage (with the intention to eventually block) people using *run as admin* with PyInstaller.
|
|
240
|
+
# There are 4 cases, block case 3 but be careful not to also block case 2.
|
|
241
|
+
# 1. User has no admin access: TokenElevationTypeDefault
|
|
242
|
+
# 2. User is an admin/UAC disabled (common on CI/VMs): TokenElevationTypeDefault
|
|
243
|
+
# 3. User has used *run as administrator* to elevate: TokenElevationTypeFull
|
|
244
|
+
# 4. User can escalate but hasn't: TokenElevationTypeLimited
|
|
245
|
+
# See https://techcommunity.microsoft.com/t5/windows-blog-archive/how-to-determine-if-a-user-is-a-member-of-the-administrators/ba-p/228476
|
|
246
|
+
import ctypes
|
|
247
|
+
|
|
248
|
+
advapi32 = ctypes.CDLL("Advapi32.dll")
|
|
249
|
+
kernel32 = ctypes.CDLL("kernel32.dll")
|
|
250
|
+
|
|
251
|
+
kernel32.GetCurrentProcess.restype = ctypes.c_void_p
|
|
252
|
+
process = kernel32.GetCurrentProcess()
|
|
253
|
+
|
|
254
|
+
token = ctypes.c_void_p()
|
|
255
|
+
try:
|
|
256
|
+
TOKEN_QUERY = 8
|
|
257
|
+
assert advapi32.OpenProcessToken(ctypes.c_void_p(process), TOKEN_QUERY, ctypes.byref(token))
|
|
258
|
+
|
|
259
|
+
elevation_type = ctypes.c_int()
|
|
260
|
+
TokenElevationType = 18
|
|
261
|
+
assert advapi32.GetTokenInformation(
|
|
262
|
+
token, TokenElevationType, ctypes.byref(elevation_type), ctypes.sizeof(elevation_type),
|
|
263
|
+
ctypes.byref(ctypes.c_int())
|
|
264
|
+
)
|
|
265
|
+
finally:
|
|
266
|
+
kernel32.CloseHandle(token)
|
|
267
|
+
|
|
268
|
+
if elevation_type.value == 2: # TokenElevationTypeFull
|
|
269
|
+
logger.log(
|
|
270
|
+
logging.DEPRECATION,
|
|
271
|
+
"Running PyInstaller as admin is not necessary nor sensible. Run PyInstaller from a non-administrator "
|
|
272
|
+
"terminal. PyInstaller 7.0 will block this."
|
|
273
|
+
)
|
|
274
|
+
|
|
275
|
+
elif compat.is_darwin or compat.is_linux:
|
|
276
|
+
# Discourage (with the intention to eventually block) people using *sudo* with PyInstaller.
|
|
277
|
+
# Again there are 4 cases, block only case 4.
|
|
278
|
+
# 1. Non-root: os.getuid() != 0
|
|
279
|
+
# 2. Logged in as root (usually a VM): os.getlogin() == "root", os.getuid() == 0
|
|
280
|
+
# 3. No named users (e.g. most Docker containers): os.getlogin() fails
|
|
281
|
+
# 4. Regular user using escalation: os.getlogin() != "root", os.getuid() == 0
|
|
282
|
+
try:
|
|
283
|
+
user = os.getlogin()
|
|
284
|
+
except OSError:
|
|
285
|
+
user = ""
|
|
286
|
+
if os.getuid() == 0 and user and user != "root":
|
|
287
|
+
logger.log(
|
|
288
|
+
logging.DEPRECATION,
|
|
289
|
+
"Running PyInstaller as root is not necessary nor sensible. Do not use PyInstaller with sudo. "
|
|
290
|
+
"PyInstaller 7.0 will block this."
|
|
291
|
+
)
|
|
292
|
+
|
|
293
|
+
if compat.is_win:
|
|
294
|
+
# Do not let people run PyInstaller from admin cmd's default working directory (C:\Windows\system32)
|
|
295
|
+
try:
|
|
296
|
+
pathlib.Path().resolve().relative_to(r"C:\Windows")
|
|
297
|
+
except ValueError:
|
|
298
|
+
pass
|
|
299
|
+
else:
|
|
300
|
+
raise SystemExit(
|
|
301
|
+
f"Error: Do not run pyinstaller from {pathlib.Path().resolve()}. cd to where your code is and run "
|
|
302
|
+
"pyinstaller from there. Hint: You can open a terminal where your code is by going to the parent "
|
|
303
|
+
"folder in Windows file explorer then typing cmd into the address bar."
|
|
304
|
+
)
|
|
305
|
+
|
|
306
|
+
|
|
307
|
+
if __name__ == '__main__':
|
|
308
|
+
run()
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
#-----------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) 2013-2023, PyInstaller Development Team.
|
|
3
|
+
#
|
|
4
|
+
# Distributed under the terms of the GNU General Public License (version 2
|
|
5
|
+
# or later) with exception for distributing the bootloader.
|
|
6
|
+
#
|
|
7
|
+
# The full license is in the file COPYING.txt, distributed with this software.
|
|
8
|
+
#
|
|
9
|
+
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
|
10
|
+
#-----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
msg = """
|
|
13
|
+
=============================================================
|
|
14
|
+
A RecursionError (maximum recursion depth exceeded) occurred.
|
|
15
|
+
For working around please follow these instructions
|
|
16
|
+
=============================================================
|
|
17
|
+
|
|
18
|
+
1. In your program's .spec file add this line near the top::
|
|
19
|
+
|
|
20
|
+
import sys ; sys.setrecursionlimit(sys.getrecursionlimit() * 5)
|
|
21
|
+
|
|
22
|
+
2. Build your program by running PyInstaller with the .spec file as
|
|
23
|
+
argument::
|
|
24
|
+
|
|
25
|
+
pyinstaller myprog.spec
|
|
26
|
+
|
|
27
|
+
3. If this fails, you most probably hit an endless recursion in
|
|
28
|
+
PyInstaller. Please try to track this down as far as possible,
|
|
29
|
+
create a minimal example so we can reproduce and open an issue at
|
|
30
|
+
https://github.com/pyinstaller/pyinstaller/issues following the
|
|
31
|
+
instructions in the issue template. Many thanks.
|
|
32
|
+
|
|
33
|
+
Explanation: Python's stack-limit is a safety-belt against endless recursion,
|
|
34
|
+
eating up memory. PyInstaller imports modules recursively. If the structure
|
|
35
|
+
how modules are imported within your program is awkward, this leads to the
|
|
36
|
+
nesting being too deep and hitting Python's stack-limit.
|
|
37
|
+
|
|
38
|
+
With the default recursion limit (1000), the recursion error occurs at about
|
|
39
|
+
115 nested imported, with limit 2000 at about 240, with limit 5000 at about
|
|
40
|
+
660.
|
|
41
|
+
"""
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
def raise_with_msg():
|
|
45
|
+
raise SystemExit(msg)
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
#-----------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) 2005-2023, PyInstaller Development Team.
|
|
3
|
+
#
|
|
4
|
+
# Distributed under the terms of the GNU General Public License (version 2
|
|
5
|
+
# or later) with exception for distributing the bootloader.
|
|
6
|
+
#
|
|
7
|
+
# The full license is in the file COPYING.txt, distributed with this software.
|
|
8
|
+
#
|
|
9
|
+
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
|
10
|
+
#-----------------------------------------------------------------------------
|
|
11
|
+
"""
|
|
12
|
+
Code to be shared by PyInstaller and the bootloader/wscript file.
|
|
13
|
+
|
|
14
|
+
This code must not assume that either PyInstaller or any of its dependencies installed. I.e., the only imports allowed
|
|
15
|
+
in here are standard library ones. Within reason, it is preferable that this file should still run under Python 2.7 as
|
|
16
|
+
many compiler docker images still have only Python 2 installed.
|
|
17
|
+
"""
|
|
18
|
+
|
|
19
|
+
import platform
|
|
20
|
+
import re
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
def _pyi_machine(machine, system):
|
|
24
|
+
# type: (str, str) -> str
|
|
25
|
+
"""
|
|
26
|
+
Choose an intentionally simplified architecture identifier to be used in the bootloader's directory name.
|
|
27
|
+
|
|
28
|
+
Args:
|
|
29
|
+
machine:
|
|
30
|
+
The output of ``platform.machine()`` or any known architecture alias or shorthand that may be used by a
|
|
31
|
+
C compiler.
|
|
32
|
+
system:
|
|
33
|
+
The output of ``platform.system()`` on the target machine.
|
|
34
|
+
Returns:
|
|
35
|
+
Either a string tag or, on platforms that don't need an architecture tag, ``None``.
|
|
36
|
+
|
|
37
|
+
Ideally, we would just use ``platform.machine()`` directly, but that makes cross-compiling the bootloader almost
|
|
38
|
+
impossible, because you need to know at compile time exactly what ``platform.machine()`` will be at run time, based
|
|
39
|
+
only on the machine name alias or shorthand reported by the C compiler at the build time. Rather, use a loose
|
|
40
|
+
differentiation, and trust that anyone mixing armv6l with armv6h knows what they are doing.
|
|
41
|
+
"""
|
|
42
|
+
# See the corresponding tests in tests/unit/test_compat.py for examples.
|
|
43
|
+
|
|
44
|
+
if platform.machine() == "sw_64" or platform.machine() == "loongarch64":
|
|
45
|
+
# This explicitly inhibits cross compiling the bootloader for or on SunWay and LoongArch machine.
|
|
46
|
+
return platform.machine()
|
|
47
|
+
|
|
48
|
+
if system == "Windows":
|
|
49
|
+
if machine.lower().startswith("arm"):
|
|
50
|
+
return "arm"
|
|
51
|
+
else:
|
|
52
|
+
return "intel"
|
|
53
|
+
|
|
54
|
+
if system != "Linux":
|
|
55
|
+
# No architecture specifier for anything par Linux.
|
|
56
|
+
# - macOS is on two 64 bit architectures, but they are merged into one "universal2" bootloader.
|
|
57
|
+
# - BSD supports a wide range of architectures, but according to PyPI's download statistics, every one of our
|
|
58
|
+
# BSD users are on x86_64. This may change in the distant future.
|
|
59
|
+
return
|
|
60
|
+
|
|
61
|
+
if machine.startswith(("arm", "aarch")):
|
|
62
|
+
# ARM has a huge number of similar and aliased sub-versions, such as armv5, armv6l armv8h, aarch64.
|
|
63
|
+
return "arm"
|
|
64
|
+
if machine in ("thumb"):
|
|
65
|
+
# Reported by waf/gcc when Thumb instruction set is enabled on 32-bit ARM. The platform.machine() returns "arm"
|
|
66
|
+
# regardless of the instruction set.
|
|
67
|
+
return "arm"
|
|
68
|
+
if machine in ("x86_64", "x64", "x86"):
|
|
69
|
+
return "intel"
|
|
70
|
+
if re.fullmatch("i[1-6]86", machine):
|
|
71
|
+
return "intel"
|
|
72
|
+
if machine.startswith(("ppc", "powerpc")):
|
|
73
|
+
# PowerPC comes in 64 vs 32 bit and little vs big endian variants.
|
|
74
|
+
return "ppc"
|
|
75
|
+
if machine in ("mips64", "mips"):
|
|
76
|
+
return "mips"
|
|
77
|
+
if machine.startswith("riscv"):
|
|
78
|
+
return "riscv"
|
|
79
|
+
# Machines with no known aliases :)
|
|
80
|
+
if machine in ("s390x",):
|
|
81
|
+
return machine
|
|
82
|
+
|
|
83
|
+
# Unknown architectures are allowed by default, but will all be placed under one directory. In theory, trying to
|
|
84
|
+
# have multiple unknown architectures in one copy of PyInstaller will not work, but that should be sufficiently
|
|
85
|
+
# unlikely to ever happen.
|
|
86
|
+
return "unknown"
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__author__ = 'martin'
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
#-----------------------------------------------------------------------------
|
|
2
|
+
# Copyright (c) 2005-2023, PyInstaller Development Team.
|
|
3
|
+
#
|
|
4
|
+
# Distributed under the terms of the GNU General Public License (version 2
|
|
5
|
+
# or later) with exception for distributing the bootloader.
|
|
6
|
+
#
|
|
7
|
+
# The full license is in the file COPYING.txt, distributed with this software.
|
|
8
|
+
#
|
|
9
|
+
# SPDX-License-Identifier: (GPL-2.0-or-later WITH Bootloader-exception)
|
|
10
|
+
#-----------------------------------------------------------------------------
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class PyiBlockCipher:
|
|
14
|
+
def __init__(self, key=None):
|
|
15
|
+
from PyInstaller.exceptions import RemovedCipherFeatureError
|
|
16
|
+
raise RemovedCipherFeatureError("Please remove cipher and block_cipher parameters from your spec file.")
|