forked from financial-astrology-research/morinus-console
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmorinus.spec
More file actions
executable file
·21 lines (21 loc) · 775 Bytes
/
Copy pathmorinus.spec
File metadata and controls
executable file
·21 lines (21 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- mode: python -*-
a = Analysis([os.path.join(HOMEPATH,'support\\_mountzlib.py'), os.path.join(HOMEPATH,'support\\useUnicode.py'), 'Morinus\\morinus.py'],
pathex=['C:\\pyinstaller-1.5.1'])
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=1,
name=os.path.join('build\\pyi.win32\\morinus', 'morinus.exe'),
debug=False,
strip=False,
upx=True,
console=False , icon='Morinus.ico')
coll = COLLECT( exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
name=os.path.join('dist', 'morinus'))
app = BUNDLE(coll,
name=os.path.join('dist', 'morinus.app'))