mirror of
https://gitlab.com/RemixDev/deemix-gui-pyweb.git
synced 2025-01-01 12:26:13 +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))]
|
for (root, dirs, files) in os.walk(os.path.normpath(src))]
|
||||||
|
|
||||||
APP = ['deemix_gui.py']
|
APP = ['deemix_gui.py']
|
||||||
DATA_FILES = [tree('webui/public')]
|
DATA_FILES = ['webui/public', 'icon.icns']
|
||||||
OPTIONS = {
|
OPTIONS = {
|
||||||
'argv_emulation': False,
|
'argv_emulation': False,
|
||||||
'strip': True,
|
'strip': True,
|
||||||
'iconfile': 'icon.icns',
|
'iconfile': 'icon.icns',
|
||||||
'includes': ['WebKit', 'Foundation', 'webview']
|
'includes': ['WebKit', 'Foundation', 'webview', 'flask', 'flask-socketio', 'deemix']
|
||||||
}
|
}
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
|
|
Loading…
Reference in a new issue