forked from thearn/webcam-pulse-detector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_pulse.spec
28 lines (28 loc) · 818 Bytes
/
get_pulse.spec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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)