Staging
v0.8.1
https://github.com/python/cpython
Raw File
Tip revision: 73cdff47b2ff80e38da49bb42e68646ae1d4f190 authored by Anthony Baxter on 23 March 2006, 02:49:35 UTC
take 3
Tip revision: 73cdff4
buildapp.py
#
# After running python setup.py install, run this program from the command
# line like so:
#
# % python2.3 buildapp.py build
#
# A double-clickable IDLE application will be created in the build/ directory.
#

from bundlebuilder import buildapp

buildapp(
        name="IDLE",
        mainprogram="idle.py",
        argv_emulation=1,
        iconfile="Icons/idle.icns",
)
back to top