commit 7c46ec3ae7c4c2b3bfcedbdb0a0e813407e606ac Author: Ethanfel Date: Mon Apr 6 11:11:25 2026 +0200 feat: project skeleton diff --git a/main.py b/main.py new file mode 100644 index 0000000..95418e7 --- /dev/null +++ b/main.py @@ -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() diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..8d8db26 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,3 @@ +PyQt6>=6.4 +python-mpv>=1.0 +pytest>=7.0 diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/tests/test_utils.py b/tests/test_utils.py new file mode 100644 index 0000000..e69de29