mirror of
https://github.com/blw1138/Zordon.git
synced 2025-12-17 16:58:12 +00:00
29 lines
591 B
Python
29 lines
591 B
Python
"""
|
|
This is a setup.py script generated by py2applet
|
|
|
|
Usage:
|
|
python setup.py py2app
|
|
"""
|
|
import glob
|
|
|
|
from setuptools import setup
|
|
|
|
APP = ['main.py']
|
|
DATA_FILES = [('config', glob.glob('config/*.*')),
|
|
('resources', glob.glob('resources/*.*'))]
|
|
OPTIONS = {
|
|
'excludes': ['PySide6'],
|
|
'includes': ['zeroconf', 'zeroconf._services.info'],
|
|
'plist': {
|
|
'LSMinimumSystemVersion': '10.15', # Specify minimum macOS version
|
|
},
|
|
}
|
|
|
|
setup(
|
|
app=APP,
|
|
data_files=DATA_FILES,
|
|
options={'py2app': OPTIONS},
|
|
setup_requires=['py2app'],
|
|
name='Zordon'
|
|
)
|