projectgui.py
Go to the documentation of this file.
1 #! /usr/bin/env python
2 ######################################################################
3 #
4 # Name: projectgui.py
5 #
6 # Purpose: Script for invoking gui interface to project.py
7 #
8 # Created: 16-Jan-2015 Herbert Greenlee
9 #
10 # Usage:
11 #
12 # projectgui.py
13 #
14 ######################################################################
15 
16 from __future__ import absolute_import
17 from __future__ import print_function
18 from project_gui_modules.projectapp import ProjectApp
19 
20 w = ProjectApp()
21 w.mainloop()