source: GCLiveMapGen.spec @ ce7d1e499e03ddb8d32f32e49e556782b56bccf3

Revision ce7d1e499e03ddb8d32f32e49e556782b56bccf3, 930 bytes checked in by HD Stich <hd@…>, 2 years ago (diff)

Added spec file for pyinstaller.

  • Property mode set to 100644
Line 
1# -*- mode: python -*-
2a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), os.path.join(HOMEPATH,'support\\useUnicode.py'), 'GCLiveMapGen.py'],
3             pathex=['.\\'])
4pyz = PYZ(a.pure)
5exe = EXE(pyz,
6          a.scripts,
7          exclude_binaries=1,
8          name=os.path.join('build\\pyi.win32\\GCLiveMapGen', 'GCLiveMapGen.exe'),
9          debug=False,
10          strip=False,
11          upx=True,
12          console=True , icon='icons\\GC.ico')
13coll = COLLECT( exe,
14               a.binaries,
15               a.zipfiles,
16               a.datas +
17                           [('icons\\GC.ico', 'icons\\GC.ico', 'DATA'),
18                ('icons\\About.png', 'icons\\About.png', 'DATA'),
19                ('icons\\Exit.png', 'icons\\Exit.png', 'DATA'),
20                ('icons\\Toolbox.png', 'icons\\Exit.png', 'DATA')],
21               strip=False,
22               upx=True,
23               name=os.path.join('dist', 'GCLiveMapGen'))
Note: See TracBrowser for help on using the repository browser.