add click and gui pyinstaller targets

This commit is contained in:
Thomas (Tom) C. Gorordo 2025-04-18 03:20:55 -07:00
parent 5ee9a2f33f
commit 04fc4754bf
Signed by: tgorordo
GPG key ID: 0CBED22BB0D94490
5 changed files with 96 additions and 2 deletions

10
src/gui.py Normal file
View file

@ -0,0 +1,10 @@
from PySide6.QtWidgets import QApplication, QWidget
import sys
import carousel
app = QApplication(sys.argv)
window = QWidget()
window.show()
app.exec()