]>
git.saurik.com Git - wxWidgets.git/blob - wxPython/samples/doodle/setup.py
   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: 
   6 #       python setup.py py2exe 
  11 from distutils
.core 
import setup
 
  14 ## if sys.platform == "win32" and sys.version_info > (2, 4): 
  15 ##     DATA =  [("", os.path.join(sys.exec_prefix, 'msvcr71.dll'))] 
  20 setup( name 
= "superdoodle", 
  21        #console = ["superdoodle.py"] 
  22        windows 
= ["superdoodle.py"], 
  24        options 
= {"py2exe" : { "compressed": 0,