-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
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
- Loading branch information
1 parent
d0863e6
commit 0828394
Showing
2 changed files
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=['/home/kevin/Code/Paleomag/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='MagicGUI_Ubuntu14_04x64', | ||
debug=False, | ||
strip=False, | ||
upx=True, | ||
console=False , icon='programs/images/PmagPy.ico') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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=['/home/kevin/Code/Paleomag/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='PmagGUI_Ubuntu14_04x64', | ||
debug=False, | ||
strip=False, | ||
upx=True, | ||
console=False , icon='programs/images/PmagPy.ico') |