blob: 672eb1e5f35ddf96015abe855bf6367defa9d996 [file] [log] [blame]
Tony Lownds2398d572003-05-13 15:28:21 +00001#
Kurt B. Kaiser8d1f11b2003-05-26 22:20:34 +00002# After running python setup.py install, run this program from the command
Tony Lownds2398d572003-05-13 15:28:21 +00003# line like so:
4#
5# % python2.3 buildapp.py build
6#
7# A double-clickable IDLE application will be created in the build/ directory.
8#
9
10from bundlebuilder import buildapp
11
12buildapp(
Kurt B. Kaiser8d1f11b2003-05-26 22:20:34 +000013 name="IDLE",
14 mainprogram="idle.py",
15 argv_emulation=1,
16 iconfile="Icons/idle.icns",
Tony Lownds2398d572003-05-13 15:28:21 +000017)