Files
Portable-Computing-Toolkit-…/portable_computing_toolkit_installer/__main__.py

18 lines
425 B
Python

import sys
from PyQt5 import QtWidgets
from ui.installer_wizard import InstallerWizard
if __name__ == "__main__":
# create the QApplication that will manage this window
app = QtWidgets.QApplication(sys.argv)
app.setApplicationName("Portable Computing Toolkit Installer")
# create a window
main_window = InstallerWizard()
main_window.show()
# execute the application
sys.exit(app.exec_())