1
0
Fork 0
mirror of https://github.com/Athemis/PyDSF.git synced 2025-04-19 03:19:13 +00:00

First commit

This commit is contained in:
Alexander Minges 2015-01-30 03:34:25 +01:00
commit 41b252a3c9
12 changed files with 2715 additions and 0 deletions

12
main.py Normal file
View file

@ -0,0 +1,12 @@
#!/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_())