feat: project skeleton
This commit is contained in:
@@ -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()
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
PyQt6>=6.4
|
||||||
|
python-mpv>=1.0
|
||||||
|
pytest>=7.0
|
||||||
Reference in New Issue
Block a user