Skip to content

Commit 5e7a0cf

Browse files
committed
adding darwin(mac) spec for binaries
1 parent 1ee601e commit 5e7a0cf

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

pynes.darwin.spec

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# -*- mode: python -*-
2+
3+
a = Analysis(['bin/pynes'], pathex=[os.path.join('.')],
4+
hiddenimports=['pynes'], hookspath=None)
5+
6+
pyz = PYZ(a.pure)
7+
8+
exe = EXE(pyz,
9+
a.scripts,
10+
exclude_binaries=1,
11+
name=os.path.join('build', 'pyi.darwin', 'pynes'),
12+
debug=False,
13+
strip=None,
14+
upx=False,
15+
console=True )
16+
17+
coll = COLLECT(exe,
18+
a.binaries,
19+
a.zipfiles,
20+
a.datas,
21+
strip=None,
22+
upx=False,
23+
name=os.path.join('dist', 'darwin'))
24+
25+
#app = BUNDLE(coll,
26+
# name=os.path.join('bundle', 'darwin', 'pynes'))

0 commit comments

Comments
 (0)