]> git.saurik.com Git - wxWidgets.git/blame_incremental - wxPython/samples/doodle/setup.py
No animate contrib anymore
[wxWidgets.git] / wxPython / samples / doodle / setup.py
... / ...
CommitLineData
1# A distutils script to make a standalone .exe of superdoodle for
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
7#
8
9
10import sys, os
11from distutils.core import setup
12import py2exe
13
14## if sys.platform == "win32" and sys.version_info > (2, 4):
15## DATA = [("", os.path.join(sys.exec_prefix, 'msvcr71.dll'))]
16## else:
17## DATA = []
18
19
20setup( name = "superdoodle",
21 #console = ["superdoodle.py"]
22 windows = ["superdoodle.py"],
23 #data_files = DATA,
24 )
25