2017-09-07 17:37:03 +00:00
|
|
|
"""
|
|
|
|
This is a setup.py script generated by py2applet
|
|
|
|
|
|
|
|
Usage:
|
|
|
|
python setup.py py2app
|
|
|
|
"""
|
|
|
|
|
|
|
|
from setuptools import setup
|
|
|
|
from glob import glob
|
|
|
|
import syncplay
|
|
|
|
|
|
|
|
APP = ['syncplayClient.py']
|
|
|
|
DATA_FILES = [
|
2018-04-15 18:19:20 +00:00
|
|
|
('resources', glob('resources/*.png') + glob('resources/*.rtf') + glob('resources/*.lua')),
|
2017-09-07 17:37:03 +00:00
|
|
|
]
|
|
|
|
OPTIONS = {
|
2018-07-23 21:08:44 +00:00
|
|
|
'iconfile': 'resources/icon.icns',
|
2018-06-18 20:12:31 +00:00
|
|
|
'extra_scripts': 'syncplayServer.py',
|
2018-07-23 21:08:44 +00:00
|
|
|
'includes': {'PySide2.QtCore', 'PySide2.QtUiTools', 'PySide2.QtGui', 'PySide2.QtWidgets', 'certifi'},
|
2017-10-02 22:18:05 +00:00
|
|
|
'excludes': {'PySide', 'PySide.QtCore', 'PySide.QtUiTools', 'PySide.QtGui'},
|
2018-07-23 21:08:44 +00:00
|
|
|
'qt_plugins': [
|
|
|
|
'platforms/libqcocoa.dylib',
|
|
|
|
'platforms/libqminimal.dylib',
|
|
|
|
'platforms/libqoffscreen.dylib',
|
|
|
|
'styles/libqmacstyle.dylib'
|
|
|
|
],
|
2018-06-18 20:12:31 +00:00
|
|
|
'plist': {
|
2018-07-23 21:08:44 +00:00
|
|
|
'CFBundleName': 'Syncplay',
|
|
|
|
'CFBundleShortVersionString': syncplay.version,
|
|
|
|
'CFBundleIdentifier': 'pl.syncplay.Syncplay',
|
2019-02-05 20:46:59 +00:00
|
|
|
'LSMinimumSystemVersion': '10.12.0',
|
2019-02-01 09:23:59 +00:00
|
|
|
'NSHumanReadableCopyright': 'Copyright © 2019 Syncplay All Rights Reserved'
|
2018-06-18 20:12:31 +00:00
|
|
|
}
|
2017-09-07 17:37:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
setup(
|
|
|
|
app=APP,
|
|
|
|
name='Syncplay',
|
|
|
|
data_files=DATA_FILES,
|
|
|
|
options={'py2app': OPTIONS},
|
|
|
|
setup_requires=['py2app'],
|
|
|
|
)
|