mirror of
https://gitlab.com/RemixDev/deemix-gui-pyweb.git
synced 2024-12-28 18:36:07 +00:00
Continuing working on py2app
This commit is contained in:
parent
ceea9837f6
commit
16cee7977d
4
setup.py
4
setup.py
|
@ -13,12 +13,12 @@ def tree(src):
|
|||
for (root, dirs, files) in os.walk(os.path.normpath(src))]
|
||||
|
||||
APP = ['deemix_gui.py']
|
||||
DATA_FILES = [tree('webui/public')]
|
||||
DATA_FILES = ['webui/public', 'icon.icns']
|
||||
OPTIONS = {
|
||||
'argv_emulation': False,
|
||||
'strip': True,
|
||||
'iconfile': 'icon.icns',
|
||||
'includes': ['WebKit', 'Foundation', 'webview']
|
||||
'includes': ['WebKit', 'Foundation', 'webview', 'flask', 'flask-socketio', 'deemix']
|
||||
}
|
||||
|
||||
setup(
|
||||
|
|
Loading…
Reference in a new issue