Cleanup subprocess generation

This commit is contained in:
Brett Williams
2024-08-03 21:23:25 -05:00
parent b1280ad445
commit dc7f3877b2
4 changed files with 22 additions and 284 deletions

View File

@@ -11,7 +11,13 @@ from setuptools import setup
APP = ['main.py']
DATA_FILES = [('config', glob.glob('config/*.*')),
('resources', glob.glob('resources/*.*'))]
OPTIONS = {}
OPTIONS = {
'excludes': ['PySide6'],
'includes': ['zeroconf', 'zeroconf._services.info'],
'plist': {
'LSMinimumSystemVersion': '10.15', # Specify minimum macOS version
},
}
setup(
app=APP,