Advertisement
Guest User

Untitled

a guest
Aug 31st, 2013
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.17 KB | None | 0 0
  1. setup(
  2.     name = "iQuality",
  3.     version = __version__,
  4.     description='High Quality Songs Downloader',
  5.     author='Itay Brandes',
  6.     data_files = [
  7.                     ('phonon_backend', [r'C:\Python27\Lib\site-packages\PyQt4\plugins\phonon_backend\phonon_ds94.dll']),
  8.                     ('imageformats', glob(r'C:\Python27\Lib\site-packages\PyQt4\plugins\imageformats\*.dll')),
  9.                     ("pics", glob(r'code\pics\*.*')),
  10.                     ("ts", glob(r'code\ts\*.qm')),
  11.                     ("", glob('*.txt')+glob('*.md')+[r'code\public.key'])
  12.                     ],
  13.     scripts = [{"script": os.path.join(code_dir, "code", "Gui.py"),
  14.                 # 'uac_info': "requireAdministrator",
  15.                 "icon_resources": [(1, os.path.join(code_dir, "code", "pics", "iQUACK.ico"))],
  16.                 "dest_base": "iQuality"},
  17.                 ],
  18.     options = {"py2exe":{
  19.                         "includes": ["mutagen.id3", "mutagen.easyid3", 'sip', 'win32api', 'lxml.etree', 'lxml._elementpath', 'gzip'],
  20.                         'excludes': ['doctest', 'pdb', 'unittest', '_ssl', 'pyreadline', 'locale', 'optparse', 'calender'],
  21.                         'compressed': 'True',
  22.                         "optimize": 2,
  23.                         'bundle_files': 3,
  24.                         'dll_excludes': ['w9xpopen.exe']
  25.                         },
  26.                        
  27.                 "bdist_esky": {
  28.                         "freezer_module": "py2exe"
  29.                         }},
  30.     zipfile = None,
  31.     )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement