#!/usr/bin/env python

"""
About the smallest possible wxPython program for testing py2app


"""

import wx

a = wx.App()
f = wx.Frame(None, title="a test app")
f.Show()
a.MainLoop()


