2001-04-30 14:34:21 -04:00
|
|
|
# A distutils script to make a standalone .exe of superdoodle for
|
2001-05-08 15:27:48 -04:00
|
|
|
# Windows platforms. You can get py2exe from
|
|
|
|
# http://py2exe.sourceforge.net/. Use this command to build the .exe
|
|
|
|
# and collect the other needed files:
|
|
|
|
#
|
|
|
|
# python setup.py py2exe
|
2001-04-30 14:34:21 -04:00
|
|
|
#
|
|
|
|
|
2001-05-08 15:27:48 -04:00
|
|
|
|
2001-04-30 14:34:21 -04:00
|
|
|
from distutils.core import setup
|
|
|
|
import py2exe
|
|
|
|
|
|
|
|
setup( name = "superdoodle",
|
|
|
|
scripts = ["superdoodle.py"]
|
|
|
|
)
|
|
|
|
|