This commit is contained in:
Pavol Rusnak 2011-03-23 03:45:12 +01:00
commit 4937dbfde4
13 changed files with 169 additions and 0 deletions

10
software/edubrm Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/python
import sys
from PyQt4.QtGui import QApplication
from main import Main
app = QApplication(sys.argv)
window = Main()
window.show()
sys.exit(app.exec_())