diff options
author | emkael <emkael@tlen.pl> | 2017-05-04 14:26:09 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2017-05-09 02:50:54 +0200 |
commit | 6edc2b27e67b5872afb8fff0a5ae100e10ca6c5c (patch) | |
tree | 8f9599d3e157bcc3e5dacf55a7c8b62eed09b2ce | |
parent | b5163d2e1019323e1b0f28b8e2b7e69acc0d4d12 (diff) |
Compile metadata
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | ausbutler.spec | 17 |
2 files changed, 19 insertions, 0 deletions
@@ -1 +1,3 @@ *.pyc +dist/* +build/* diff --git a/ausbutler.spec b/ausbutler.spec new file mode 100644 index 0000000..0294122 --- /dev/null +++ b/ausbutler.spec @@ -0,0 +1,17 @@ +import os +a = Analysis(['butler.py'], + pathex=[os.path.abspath('.')], + hiddenimports=[], + hookspath=None, + runtime_hooks=None) +pyz = PYZ(a.pure) +exe = EXE(pyz, + a.scripts, + a.binaries, + a.zipfiles, + a.datas, + name='butler.exe', + debug=False, + strip=None, + upx=True, + console=True) |