Skip to content

Commit

Permalink
Update Spec Files
Browse files Browse the repository at this point in the history
  • Loading branch information
drfeinberg authored Mar 8, 2022
1 parent ac7c56d commit 0df0cb5
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions voicelab_osx.spec
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
# -*- mode: python ; coding: utf-8 -*-
from PyInstaller.utils.hooks import collect_data_files

block_cipher = None


a = Analysis(['voicelab.py'],
pathex=['VoiceLab'],
binaries=[],
datas=[],
hiddenimports=['cmath', 'sklearn.utils._weight_vector'],
datas=collect_data_files('librosa'),
hiddenimports=['cmath', 'sklearn.utils._weight_vector', 'sklearn.neighbors._partition_nodes'],
hookspath=[],
runtime_hooks=[],
excludes=[],
Expand Down Expand Up @@ -38,5 +39,5 @@ coll = COLLECT(exe,
name='VoiceLab')
app = BUNDLE(coll,
name='VoiceLab.app',
icon='favicon.ico',
icon='Voicelab/favicon.ico',
bundle_identifier=None)

0 comments on commit 0df0cb5

Please sign in to comment.