Skip to content

Commit e779617

Browse files
authored
Add files via upload
1 parent 8396fde commit e779617

3 files changed

Lines changed: 111 additions & 0 deletions

File tree

voicelab_osx.spec

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['voicelab.py'],
7+
pathex=['VoiceLab'],
8+
binaries=[],
9+
datas=[],
10+
hiddenimports=['cmath', 'sklearn.utils._weight_vector'],
11+
hookspath=[],
12+
runtime_hooks=[],
13+
excludes=[],
14+
win_no_prefer_redirects=False,
15+
win_private_assemblies=False,
16+
cipher=block_cipher,
17+
noarchive=False)
18+
pyz = PYZ(a.pure, a.zipped_data,
19+
cipher=block_cipher)
20+
exe = EXE(pyz,
21+
a.scripts,
22+
[],
23+
exclude_binaries=True,
24+
name='VoiceLab',
25+
debug=False,
26+
bootloader_ignore_signals=False,
27+
strip=False,
28+
upx=True,
29+
console=False ,
30+
icon='favicon.ico')
31+
coll = COLLECT(exe,
32+
a.binaries,
33+
a.zipfiles,
34+
a.datas,
35+
strip=False,
36+
upx=True,
37+
upx_exclude=[],
38+
name='VoiceLab')
39+
app = BUNDLE(coll,
40+
name='VoiceLab.app',
41+
icon='favicon.ico',
42+
bundle_identifier=None)

voicelab_ubuntu.spec

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['voicelab.py'],
7+
pathex=['VoiceLab'],
8+
binaries=[],
9+
datas=[],
10+
hiddenimports=[],
11+
hookspath=[],
12+
runtime_hooks=[],
13+
excludes=[],
14+
win_no_prefer_redirects=False,
15+
win_private_assemblies=False,
16+
cipher=block_cipher,
17+
noarchive=False)
18+
pyz = PYZ(a.pure, a.zipped_data,
19+
cipher=block_cipher)
20+
exe = EXE(pyz,
21+
a.scripts,
22+
a.binaries,
23+
a.zipfiles,
24+
a.datas,
25+
[],
26+
name='voicelab',
27+
debug=False,
28+
bootloader_ignore_signals=False,
29+
strip=False,
30+
upx=True,
31+
upx_exclude=[],
32+
runtime_tmpdir=None,
33+
console=False,
34+
icon='favicon.ico' )

voicelab_windows.spec

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
# -*- mode: python ; coding: utf-8 -*-
2+
3+
block_cipher = None
4+
5+
6+
a = Analysis(['voicelab.py'],
7+
pathex=['VoiceLab'],
8+
binaries=[],
9+
datas=[],
10+
hiddenimports=['qdarkstyle',
11+
'PyQt5.sip'],
12+
hookspath=[],
13+
runtime_hooks=[],
14+
excludes=[],
15+
win_no_prefer_redirects=False,
16+
win_private_assemblies=False,
17+
cipher=block_cipher,
18+
noarchive=False)
19+
pyz = PYZ(a.pure, a.zipped_data,
20+
cipher=block_cipher)
21+
exe = EXE(pyz,
22+
a.scripts,
23+
a.binaries,
24+
a.zipfiles,
25+
a.datas,
26+
[],
27+
name='voicelab',
28+
debug=False,
29+
bootloader_ignore_signals=False,
30+
strip=False,
31+
upx=True,
32+
upx_exclude=[],
33+
runtime_tmpdir=None,
34+
console=False,
35+
icon='favicon.ico')

0 commit comments

Comments
 (0)