From 53129c003f4de72e78236bf8ad144b1f81be7d73 Mon Sep 17 00:00:00 2001 From: Tyrel Souza Date: Mon, 20 Jul 2015 14:33:33 -0400 Subject: [PATCH] Added spec file --- AttributionReport.spec | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 AttributionReport.spec diff --git a/AttributionReport.spec b/AttributionReport.spec new file mode 100644 index 0000000..cce0669 --- /dev/null +++ b/AttributionReport.spec @@ -0,0 +1,22 @@ +# -*- mode: python -*- +a = Analysis(['main.py'], + pathex=['C:\\Users\\tsouza\\PycharmProjects\\attribution_report'], + hiddenimports=[], + hookspath=None, + runtime_hooks=None) +pyz = PYZ(a.pure) +exe = EXE(pyz, + a.scripts, + exclude_binaries=True, + name='AttributionReport.exe', + debug=False, + strip=None, + upx=True, + console=True ) +coll = COLLECT(exe, + a.binaries, + a.zipfiles, + a.datas, + strip=None, + upx=True, + name='AttributionReport')