]> git.saurik.com Git - wxWidgets.git/blame - wxPython/samples/doodle/setup.py
some updates for new methods, constants, etc.
[wxWidgets.git] / wxPython / samples / doodle / setup.py
CommitLineData
7114b9fa
RD
1#
2# A distutils script to make a standalone .exe of superdoodle for
3# Windows platforms.
4#
5
6from distutils.core import setup
7import py2exe
8
9setup( name = "superdoodle",
10 scripts = ["superdoodle.py"]
11 )
12