summaryrefslogtreecommitdiffstats
path: root/Lib/idlelib/buildapp.py
blob: 42aeeb7e50f13291ca6125281b6dfcde24394262 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
)