#!/usr/bin/env python

from PyQt4 import QtGui
from sys import argv

from tf_plotter import tfPlotter

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