Skip to content

Commit

Permalink
added buildout for osx
Browse files Browse the repository at this point in the history
  • Loading branch information
thearn committed Dec 1, 2013
1 parent a1f09f9 commit 7c84452
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions get_pulse_mac.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
# -*- mode: python -*-
a = Analysis(['get_pulse.py'],
pathex=[
'/Users/tristanhearn/Documents/thearn_repos/webcam-pulse-detector'],
hiddenimports=[],
hookspath=None,
runtime_hooks=None)
a.datas += [
('haarcascade_frontalface_alt.xml', 'haarcascade_frontalface_alt.xml', 'DATA')]
pyz = PYZ(a.pure)
exe = EXE(pyz,
a.scripts,
exclude_binaries=True,
name='get_pulse',
debug=False,
strip=None,
upx=True,
console=False)
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=None,
upx=True,
name='get_pulse')
app = BUNDLE(coll,
name='get_pulse.app',
icon=None)

0 comments on commit 7c84452

Please sign in to comment.