Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- setup(
- name = "iQuality",
- version = __version__,
- description='High Quality Songs Downloader',
- author='Itay Brandes',
- data_files = [
- ('phonon_backend', [r'C:\Python27\Lib\site-packages\PyQt4\plugins\phonon_backend\phonon_ds94.dll']),
- ('imageformats', glob(r'C:\Python27\Lib\site-packages\PyQt4\plugins\imageformats\*.dll')),
- ("pics", glob(r'code\pics\*.*')),
- ("ts", glob(r'code\ts\*.qm')),
- ("", glob('*.txt')+glob('*.md')+[r'code\public.key'])
- ],
- scripts = [{"script": os.path.join(code_dir, "code", "Gui.py"),
- # 'uac_info': "requireAdministrator",
- "icon_resources": [(1, os.path.join(code_dir, "code", "pics", "iQUACK.ico"))],
- "dest_base": "iQuality"},
- ],
- options = {"py2exe":{
- "includes": ["mutagen.id3", "mutagen.easyid3", 'sip', 'win32api', 'lxml.etree', 'lxml._elementpath', 'gzip'],
- 'excludes': ['doctest', 'pdb', 'unittest', '_ssl', 'pyreadline', 'locale', 'optparse', 'calender'],
- 'compressed': 'True',
- "optimize": 2,
- 'bundle_files': 3,
- 'dll_excludes': ['w9xpopen.exe']
- },
- "bdist_esky": {
- "freezer_module": "py2exe"
- }},
- zipfile = None,
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement