blob: 48aa5f70cdebb2fdf1e100dedc4a0aba337ee472 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#!/usr/bin/env python
# Copyright (c) 2009 Rajeesh K Nambiar
#
# This program is a free software, you can redistribute it
# under the license of GNU General Public License, verstion 3
# or a later version (at your option) as published by the
# Free Software Foundation
import sys
from kuttans import KuttansApp
from PyQt4 import QtGui
if __name__ == "__main__":
app = QtGui.QApplication(sys.argv)
myapp = KuttansApp()
myapp.show()
sys.exit(app.exec_())
|