]> git.saurik.com Git - wxWidgets.git/blame - wxPython/samples/doodle/setup.py
Build and Install steps updated
[wxWidgets.git] / wxPython / samples / doodle / setup.py
CommitLineData
7114b9fa 1# A distutils script to make a standalone .exe of superdoodle for
47b37e4b
RD
2# Windows platforms. You can get py2exe from
3# http://py2exe.sourceforge.net/. Use this command to build the .exe
4# and collect the other needed files:
5#
6# python setup.py py2exe
7114b9fa
RD
7#
8
47b37e4b 9
7114b9fa
RD
10from distutils.core import setup
11import py2exe
12
13setup( name = "superdoodle",
14 scripts = ["superdoodle.py"]
15 )
16