comparison setup.py @ 668:700ebab5240a

Tweak setup.py for py2exe
author Neil Muller <drnlmuller@gmail.com>
date Sun, 08 Sep 2013 17:47:11 +0200
parents 958db47db179
children 03fc9cf0f556
comparison
equal deleted inserted replaced
666:59d28ed05f7c 668:700ebab5240a
58 'License :: OSI Approved :: MIT License', 58 'License :: OSI Approved :: MIT License',
59 'Natural Language :: English', 59 'Natural Language :: English',
60 'Operating System :: Microsoft :: Windows', 60 'Operating System :: Microsoft :: Windows',
61 'Operating System :: POSIX', 61 'Operating System :: POSIX',
62 'Operating System :: MacOS :: MacOS X', 62 'Operating System :: MacOS :: MacOS X',
63 'Programming Language :: Python :: 2.5',
64 'Programming Language :: Python :: 2.6', 63 'Programming Language :: Python :: 2.6',
64 'Programming Language :: Python :: 2.7',
65 'Topic :: Games/Entertainment :: Role-Playing', 65 'Topic :: Games/Entertainment :: Role-Playing',
66 'Topic :: Games/Entertainment :: Arcade', 66 'Topic :: Games/Entertainment :: Arcade',
67 ], 67 ],
68 68
69 platforms=[ 69 platforms=[
80 scripts=[ 80 scripts=[
81 'scripts/nagslang', 81 'scripts/nagslang',
82 ], 82 ],
83 83
84 # py2exe 84 # py2exe
85 console=['scripts/testconsole.py'],
86 windows=[{ 85 windows=[{
87 'script': 'scripts/nagslang', 86 'script': 'scripts/nagslang',
88 'icon_resources': [(0, "data/icons/program/icon.ico")],
89 }], 87 }],
90 app=['scripts/nagslang'], 88 app=['scripts/nagslang'],
91 options={ 89 options={
92 'py2exe': { 90 'py2exe': {
93 'skip_archive': 1, 91 'skip_archive': 1,