-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup_macapp.py
37 lines (33 loc) · 1.01 KB
/
setup_macapp.py
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
"""
This is a setup.py script generated by py2applet
Usage:
python setup_macapp.py py2app
"""
from setuptools import setup
APP = ['discodos/cmd/open_shell_mac.py']
DATA_FILES = ['assets/discodos_cmds_v0.3_white.png']
OPTIONS = {
'iconfile': 'assets/discodos_7-v6_big_fat_D.icns',
#'argv_emulation': 'true',
#'emulate_shell_environment': 'true',
'verbose': 'true',
'plist': {
'CFBundleVersion': '1.1.0',
'CFBundleShortVersionString': '1.1.0',
'CFBundleName': 'DiscoDOS',
'CFBundleDisplayName': 'DiscoDOS',
'CFBundleGetInfoString': 'DiscoDOS is the geekiest DJ tool on the planet',
'CFBundleIdentifier': 'net.jojotodos.discodos',
'NSAppleScriptEnable': 'true',
'NSAppleScriptEnabled': 'true',
'NSHumanReadableCopyright': 'J0J0 Todos ([email protected]) - GPL v3'
},
'includes': 'applescript'
}
REQUIRES = ['py2app']
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=REQUIRES,
)