Advertisement
Guest User

Untitled

a guest
Oct 3rd, 2014
246
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.33 KB | None | 0 0
  1. from distutils.core import setup
  2. import py2exe, sys, os
  3.  
  4. sys.argv.append('py2exe')
  5.  
  6. setup(
  7.     options = {
  8.         'py2exe': {
  9.             'bundle_files': 3,
  10.             'dll_excludes': ['w9xpopen.exe'],
  11.         }
  12.     },
  13.     console = [{'script': "programa.py"}],
  14.     windows = ["programa.py"],
  15.     zipfile = None,
  16. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement