From 4718f99a3238cda6bb28bf53f834a51493381c63 Mon Sep 17 00:00:00 2001 From: Caoimhinmg Date: Tue, 14 Mar 2017 14:28:23 -0500 Subject: [PATCH] added spec files so other people trying to compile using pyinstaller have a place to start and so I have something sensable to commit when making a new release --- MagicGUIwin32.spec | 28 ++++++++++++++++++++++++++++ PmagGUIwin32.spec | 28 ++++++++++++++++++++++++++++ 2 files changed, 56 insertions(+) create mode 100644 MagicGUIwin32.spec create mode 100644 PmagGUIwin32.spec diff --git a/MagicGUIwin32.spec b/MagicGUIwin32.spec new file mode 100644 index 0000000..7249ea4 --- /dev/null +++ b/MagicGUIwin32.spec @@ -0,0 +1,28 @@ +# -*- mode: python -*- + +block_cipher = None + + +a = Analysis(['programs\magic_gui.py'], + pathex=['F:\PmagPy'], + binaries=None, + datas=[('.\pmagpy\data_model','.\data_model')], + hiddenimports=[], + 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='MagICGUIwin32', + debug=False, + strip=False, + upx=True, + console=False , version='C:\Users\Kevin\Desktop\MagICGUI_version.txt' , icon='programs\images\PmagPy.ico') diff --git a/PmagGUIwin32.spec b/PmagGUIwin32.spec new file mode 100644 index 0000000..ac5c3ac --- /dev/null +++ b/PmagGUIwin32.spec @@ -0,0 +1,28 @@ +# -*- mode: python -*- + +block_cipher = None + + +a = Analysis(['programs\pmag_gui.py'], + pathex=['F:\PmagPy'], + binaries=None, + datas=[('.\pmagpy\data_model\*','.\data_model')], + hiddenimports=[], + 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='PmagGUIwin32', + debug=False, + strip=False, + upx=True, + console=False , version='C:\Users\Kevin\Desktop\PmagGUI_version.txt' , icon='.\programs\images\PmagPy.ico')