feat: project skeleton

This commit is contained in:
2026-04-06 11:11:25 +02:00
commit 7c46ec3ae7
4 changed files with 24 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
import sys
from PyQt6.QtWidgets import QApplication, QMainWindow
from PyQt6.QtCore import Qt
def main():
app = QApplication(sys.argv)
win = MainWindow()
win.show()
sys.exit(app.exec())
class MainWindow(QMainWindow):
def __init__(self):
super().__init__()
self.setWindowTitle("8-cut")
self.resize(900, 650)
if __name__ == "__main__":
main()
+3
View File
@@ -0,0 +1,3 @@
PyQt6>=6.4
python-mpv>=1.0
pytest>=7.0
View File
View File