2018-04-26 21:34:09 +00:00
|
|
|
# -*- mode: python -*-
|
|
|
|
|
2018-04-26 22:54:05 +00:00
|
|
|
import os
|
|
|
|
workdir = os.getcwd()
|
|
|
|
|
2018-04-26 21:34:09 +00:00
|
|
|
block_cipher = None
|
|
|
|
|
|
|
|
|
2018-05-31 14:59:56 +00:00
|
|
|
a = Analysis(['syncplayServer.py'],
|
2018-04-26 22:54:05 +00:00
|
|
|
pathex=[workdir],
|
2018-04-26 21:34:09 +00:00
|
|
|
binaries=[],
|
|
|
|
datas=[('resources/*', 'resources')],
|
2018-05-31 14:59:56 +00:00
|
|
|
hiddenimports=[],
|
2018-04-26 21:34:09 +00:00
|
|
|
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,
|
|
|
|
a.binaries,
|
|
|
|
a.zipfiles,
|
|
|
|
a.datas,
|
|
|
|
name='Syncplay',
|
|
|
|
debug=False,
|
|
|
|
strip=False,
|
|
|
|
upx=False,
|
|
|
|
runtime_tmpdir=None,
|
2018-05-31 14:59:56 +00:00
|
|
|
console=True)
|