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