-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.24 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
"""
py2app setup script for Vibestick
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['vibestick.py']
DATA_FILES = [
('', ['assets']),
('', ['config']),
('', ['images']),
('', ['src']),
('', ['main.py']),
]
OPTIONS = {
'argv_emulation': True,
'iconfile': 'assets/vibestick-icon.icns', # We'll need to convert PNG to ICNS
'plist': {
'CFBundleName': 'Vibestick',
'CFBundleDisplayName': 'Vibestick',
'CFBundleGetInfoString': "StreamDeck Dual Control",
'CFBundleIdentifier': "com.rossthedev.vibestick",
'CFBundleVersion': "1.0.0",
'CFBundleShortVersionString': "1.0.0",
'NSHumanReadableCopyright': u"Copyright © 2025, Ross Warren, MIT License",
'LSUIElement': False, # Show in dock
'NSHighResolutionCapable': True,
},
'packages': ['rumps', 'StreamDeck', 'PIL', 'paramiko'],
'includes': ['src.streamdeck_controller', 'src.button_manager', 'src.config_loader',
'src.command_executor', 'src.image_manager', 'src.keyboard_parser',
'src.notification_helper', 'src.config_watcher'],
}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)