mirror of
https://github.com/Athemis/PyDSF.git
synced 2025-04-05 06:36:04 +00:00
12 lines
261 B
Python
12 lines
261 B
Python
#!/usr/bin/env python2
|
|
# -*- coding: utf-8 -*-
|
|
|
|
from PyQt4 import QtCore, QtGui
|
|
from ui.mainwindow import MainWindow
|
|
|
|
if __name__ == "__main__":
|
|
import sys
|
|
app = QtGui.QApplication(sys.argv)
|
|
ui = MainWindow()
|
|
ui.show()
|
|
sys.exit(app.exec_())
|