diff options
Diffstat (limited to 'Lib/idlelib/buildapp.py')
-rw-r--r-- | Lib/idlelib/buildapp.py | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Lib/idlelib/buildapp.py b/Lib/idlelib/buildapp.py new file mode 100644 index 0000000..42aeeb7 --- /dev/null +++ b/Lib/idlelib/buildapp.py @@ -0,0 +1,16 @@ +# +# 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, +) |