summaryrefslogtreecommitdiffstats
path: root/pykuttans/src/kuttans
blob: 6794cb2968a062c10a5895df3afc572a95a97260 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/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
sys.path.append(sys.prefix + '/share/kuttans/')
from kuttans import KuttansApp
from PyQt4 import QtGui

if __name__ == "__main__":
        app = QtGui.QApplication(sys.argv)
        myapp = KuttansApp()
        myapp.show()
        sys.exit(app.exec_())