Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from distutils.core import setup
- import py2exe
- opts = {
- "py2exe": {
- "dist_dir": "bin",
- "compressed": True,
- "optimize": 2,
- "bundle_files": 1,
- "ascii": True,
- "excludes": ['_ssl', 'doctest', 'pdb', 'unittest', 'difflib', 'inspect',
- 'locale','optparse', 'pickle', 'calendar','pyreadline']
- }
- }
- setup(
- options = opts,
- name = 'farmacias',
- description = 'Backup de mapa de farmacias magufas',
- zipfile=None,
- windows= ['farmacias.pyw']
- )
Advertisement
Add Comment
Please, Sign In to add comment