From 6edc2b27e67b5872afb8fff0a5ae100e10ca6c5c Mon Sep 17 00:00:00 2001 From: emkael Date: Thu, 4 May 2017 14:26:09 +0200 Subject: Compile metadata --- .gitignore | 2 ++ ausbutler.spec | 17 +++++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 ausbutler.spec diff --git a/.gitignore b/.gitignore index 0d20b64..22e9c93 100644 --- a/.gitignore +++ b/.gitignore @@ -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) -- cgit v1.2.3