-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (27 loc) · 838 Bytes
/
setup.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
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ['PTSApp.py']
APP_NAME = "PTSApp"
DATA_FILES = ['theme.json', 'Montserrat-Regular.ttf', 'Roboto-Regular.ttf', 'PTSApp-Icon.png']
OPTIONS = {
'iconfile': 'PTSApp-Icon.icns',
'plist': {
'CFBundleName': APP_NAME,
'CFBundleDisplayName': APP_NAME,
'CFBundleGetInfoString': "Controller for Pan / Tilt / Slider camera mount.",
'CFBundleIdentifier': "com.metabradders.osx.ptsapp",
'CFBundleVersion': "1.0",
'CFBundleShortVersionString': "1.0",
'NSHumanReadableCopyright': "Copyright © 2021, Colin Bradburne, All Rights Reserved"
}
}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
)