reverted commit 5ac85b584d

As I totally forgot pyinstaller can make .app as well
This commit is contained in:
RemixDev 2020-08-27 13:31:14 +02:00
parent 5ac85b584d
commit a590f9adb8

View file

@ -1,21 +0,0 @@
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['deemix-pyweb.py']
DATA_FILES = ['icon.icns', 'webui/public']
OPTIONS = {
'iconfile':'icon.icns'
}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)