#!/usr/bin/env python #------------------------------------------------------------------------------- # Name: DuchampOutputGUI # Purpose: # # Author: Kelvin # # Created: 02/01/2014 #------------------------------------------------------------------------------- import sys from ApplicationWindow import * # Main Program def main(): # Create our application app = QtGui.QApplication(sys.argv) # Create our application window window = ApplicationWindow() window.setWindowTitle("Duchamp Results") window.show() # Start the program sys.exit(app.exec_()) if __name__ == '__main__': main()