diff options
author | emkael <emkael@tlen.pl> | 2016-11-25 16:33:01 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2016-11-25 17:19:09 +0100 |
commit | 8e80cec14a4834ae2012959d61e473a2b430c6c4 (patch) | |
tree | 85985c18031056555bc8cd600bc4934b7942e79c /quick_lineup.spec | |
parent | 0a27bbf9ce1f5b1a52bc62ff4d9e5c2f960b030c (diff) |
bootstrap file and environment for pyinstaller
Diffstat (limited to 'quick_lineup.spec')
-rw-r--r-- | quick_lineup.spec | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/quick_lineup.spec b/quick_lineup.spec new file mode 100644 index 0000000..f96a842 --- /dev/null +++ b/quick_lineup.spec @@ -0,0 +1,28 @@ +# -*- mode: python -*- + +block_cipher = None + + +a = Analysis(['quick_lineup.py'], + pathex=['Z:\\teamy-quick-lineup'], + binaries=None, + datas=None, + hiddenimports=['html.parser','http.cookies'], + 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='quick_lineup', + debug=False, + strip=False, + upx=True, + console=True ) |