Skip to content

Commit

Permalink
added spec files so other people trying to compile using pyinstaller …
Browse files Browse the repository at this point in the history
…have a place to start and so I have something sensable to commit when making a new release
  • Loading branch information
Caoimhinmg committed Mar 14, 2017
1 parent 9dcafcd commit 4718f99
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
28 changes: 28 additions & 0 deletions MagicGUIwin32.spec
Original file line number Diff line number Diff line change
@@ -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')
28 changes: 28 additions & 0 deletions PmagGUIwin32.spec
Original file line number Diff line number Diff line change
@@ -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')

0 comments on commit 4718f99

Please sign in to comment.