2019-01-01 19:42:53 -06:00
|
|
|
# -*- mode: python -*-
|
|
|
|
|
|
|
|
block_cipher = None
|
|
|
|
|
|
|
|
a = Analysis(['main.py'],
|
|
|
|
pathex=['.'],
|
|
|
|
binaries=[("sounds", "sounds"),
|
2019-01-24 17:11:33 -06:00
|
|
|
("documentation", "documentation"),
|
2019-01-01 19:42:53 -06:00
|
|
|
("locales", "locales"),
|
2019-03-28 10:18:44 -06:00
|
|
|
("..\\windows-dependencies\\dictionaries", "enchant\\share\\enchant\\myspell"),
|
2019-01-01 21:14:45 -06:00
|
|
|
("..\\windows-dependencies\\x86\\oggenc2.exe", "."),
|
2019-01-01 21:19:29 -06:00
|
|
|
("..\\windows-dependencies\\x86\\bootstrap.exe", "."),
|
2019-01-01 19:42:53 -06:00
|
|
|
("app-configuration.defaults", "."),
|
|
|
|
("session.defaults", "."),
|
|
|
|
("cacert.pem", "."),
|
|
|
|
],
|
|
|
|
datas=[],
|
|
|
|
hiddenimports=[],
|
|
|
|
hookspath=[],
|
|
|
|
runtime_hooks=[],
|
|
|
|
excludes=[],
|
|
|
|
win_no_prefer_redirects=False,
|
|
|
|
win_private_assemblies=False,
|
|
|
|
cipher=block_cipher)
|
|
|
|
pyz = PYZ(a.pure, a.zipped_data,
|
|
|
|
cipher=block_cipher)
|
|
|
|
exe = EXE(pyz,
|
|
|
|
a.scripts,
|
|
|
|
exclude_binaries=True,
|
|
|
|
name='socializer',
|
|
|
|
debug=False,
|
|
|
|
strip=False,
|
|
|
|
upx=True,
|
|
|
|
console=False )
|
|
|
|
coll = COLLECT(exe,
|
|
|
|
a.binaries,
|
|
|
|
a.zipfiles,
|
|
|
|
a.datas,
|
|
|
|
strip=False,
|
|
|
|
upx=True,
|
|
|
|
name='main')
|