00001 #!/usr/bin/env python 00002 00003 import biosphere.gui 00004 import wx 00005 00006 class MyApp(wx.App): 00007 def OnInit(self): 00008 frame = biosphere.gui.MainWindow(None, 'Bio-SPHERE Utility') 00009 return True 00010 00011 00012 # start execution here: 00013 app = MyApp(False) 00014 app.MainLoop()