-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (29 loc) · 835 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
from setuptools import setup
APP = ['VOLSBB.py']
APP_NAME = 'VOLSBB'
DATA_FILES = []
OPTIONS = {
'argv_emulation': True,
'iconfile': 'icon.icns',
'plist': {
'LSUIElement': True,
'CFBundleName': APP_NAME,
'CFBundleDisplayName': APP_NAME,
'CFBundleGetInfoString': APP_NAME + " info",
'CFBundleIdentifier': "com.akigugale.osx.VOLSBB",
'CFBundleVersion': "1.0",
'CFBundleShortVersionString': "1.0",
'NSHumanReadableCopyright': u"Copyright \u00a9, 2018, Akshay Gugale"
},
'packages': ['rumps','requests'],
}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
url='https://github.com/akigugale/volsbb',
author='Akshay Gugale',
author_email='[email protected]',
license='MIT',
)