1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-24 04:05:39 +01:00

add a spec file for pyinstaller

This commit is contained in:
Johan Andersson 2016-03-28 19:17:56 +02:00
parent c31cdfeeec
commit 0f67ee1a82

18
spec/svtplay-dl.spec Normal file
View File

@ -0,0 +1,18 @@
a = Analysis(['../bin/svtplay-dl'],
binaries=None,
datas=None,
hiddenimports=["Crypto"],
hookspath=None,
runtime_hooks=None,
excludes=None)
pyz = PYZ(a.pure, a.zipped_data)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
name='svtplay-dl',
debug=False,
strip=None,
upx=True,
console=True)