Merged branchmenu into master
[ugit.git] / bin / ugit.py
blob9aca5fda21e18356cc9fcaaf9cb4d5d9e12274ee
1 #!/usr/bin/env python
2 # Copyright (C) 2007, David Aguilar <davvid@gmail.com>
3 # License: GPL v2 or later
4 import sys
5 from PyQt4 import QtCore, QtGui
6 from ugitlibs.models import GitModel
7 from ugitlibs.views import GitView
8 from ugitlibs.controllers import GitController
9 if __name__ == "__main__":
10 app = QtGui.QApplication (sys.argv)
11 model = GitModel()
12 view = GitView (app.activeWindow())
13 ctl = GitController (model, view)
14 view.show()
15 sys.exit(app.exec_())