Skip to content

Commit 4559a0c

Browse files
committed
Added the specfile for building fastStructure.
1 parent 30c458a commit 4559a0c

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

helper_scripts/structure.spec

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# -*- mode: python -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['structure.py'],
7+
pathex=['.', './vars'],
8+
binaries=None,
9+
datas=None,
10+
hiddenimports=['vars.admixprop', 'vars.allelefreq', 'vars.utils', 'vars.marglikehood', 'scipy.special', 'scipy.optimize'],
11+
hookspath=[],
12+
runtime_hooks=[],
13+
excludes=[],
14+
win_no_prefer_redirects=False,
15+
win_private_assemblies=False,
16+
cipher=block_cipher)
17+
pyz = PYZ(a.pure, a.zipped_data,
18+
cipher=block_cipher)
19+
exe = EXE(pyz,
20+
a.scripts,
21+
a.binaries,
22+
a.zipfiles,
23+
a.datas,
24+
name='fastStructure',
25+
debug=False,
26+
strip=False,
27+
upx=True,
28+
console=True )

0 commit comments

Comments
 (0)