-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (29 loc) · 926 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 = ['CryptowatchForMac.py']
APP_NAME = "Cryptowatch For Mac"
DATA_FILES = [('', ['data', 'configuration'])]
OPTIONS = {
'argv_emulation': True,
'iconfile': 'icons/app.icns',
'plist': {
'LSUIElement': True,
'CFBundleName': APP_NAME,
'CFBundleDisplayName': APP_NAME,
'CFBundleGetInfoString': "Cryptowatch For MacOS info",
'CFBundleIdentifier': "com.danishdua.osx.CryptowatchForMac",
'CFBundleVersion': "0.3",
'CFBundleShortVersionString': "0.3",
'NSHumanReadableCopyright': u"Copyright \u00a9, 2017, Danish Dua"
},
'packages': ['rumps', 'cryptoBar'],
}
setup(
app=APP,
data_files=DATA_FILES,
options={'py2app': OPTIONS},
setup_requires=['py2app'],
url='http://github.com/dandua98/CryptowatchForMac',
author='Danish Dua',
author_email='[email protected]',
license='MIT',
)