Guest User

farmacias

a guest
Mar 3rd, 2011
252
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.54 KB | None | 0 0
  1. from distutils.core import setup
  2. import py2exe
  3.  
  4. opts = {
  5.     "py2exe": {
  6.         "dist_dir": "bin",
  7.         "compressed": True,
  8.         "optimize": 2,
  9.         "bundle_files": 1,
  10.         "ascii": True,
  11.         "excludes": ['_ssl', 'doctest', 'pdb', 'unittest', 'difflib', 'inspect',
  12.                      'locale','optparse', 'pickle', 'calendar','pyreadline']
  13.     }
  14. }
  15.  
  16. setup(
  17.     options = opts,
  18.     name = 'farmacias',
  19.     description = 'Backup de mapa de farmacias magufas',
  20.     zipfile=None,
  21.     windows= ['farmacias.pyw']
  22.     )
Advertisement
Add Comment
Please, Sign In to add comment