]> git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/doodle/setup.py
Got a new version of StructuredText from Zope's CVS.
[wxWidgets.git] / wxPython / samples / doodle / setup.py
1 #
2 # A distutils script to make a standalone .exe of superdoodle for
3 # Windows platforms.
4 #
5
6 from distutils.core import setup
7 import py2exe
8
9 setup( name = "superdoodle",
10 scripts = ["superdoodle.py"]
11 )
12