Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
drfeinberg authored Nov 5, 2021
1 parent 8396fde commit e779617
Show file tree
Hide file tree
Showing 3 changed files with 111 additions and 0 deletions.
42 changes: 42 additions & 0 deletions voicelab_osx.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
# -*- mode: python ; coding: utf-8 -*-

block_cipher = None


a = Analysis(['voicelab.py'],
pathex=['VoiceLab'],
binaries=[],
datas=[],
hiddenimports=['cmath', 'sklearn.utils._weight_vector'],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
[],
exclude_binaries=True,
name='VoiceLab',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False ,
icon='favicon.ico')
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True,
upx_exclude=[],
name='VoiceLab')
app = BUNDLE(coll,
name='VoiceLab.app',
icon='favicon.ico',
bundle_identifier=None)
34 changes: 34 additions & 0 deletions voicelab_ubuntu.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# -*- mode: python ; coding: utf-8 -*-

block_cipher = None


a = Analysis(['voicelab.py'],
pathex=['VoiceLab'],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='voicelab',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
icon='favicon.ico' )
35 changes: 35 additions & 0 deletions voicelab_windows.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# -*- mode: python ; coding: utf-8 -*-

block_cipher = None


a = Analysis(['voicelab.py'],
pathex=['VoiceLab'],
binaries=[],
datas=[],
hiddenimports=['qdarkstyle',
'PyQt5.sip'],
hookspath=[],
runtime_hooks=[],
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
exe = EXE(pyz,
a.scripts,
a.binaries,
a.zipfiles,
a.datas,
[],
name='voicelab',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=False,
icon='favicon.ico')

0 comments on commit e779617

Please sign in to comment.