-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
39 lines (34 loc) · 973 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
33
34
35
36
37
38
39
import os
from setuptools import find_packages
from setuptools import setup
DATA_FILES = []
OPTIONS = {
'argv_emulation': True,
'iconfile': os.path.join('icons', 'Slack_Icon.icns'),
'plist': {
'CFBundleIdentifier': 'ericwb.slack-status-bar',
'CFBundleName': 'Slack Status',
'CFBundleShortVersionString': '1.0',
'CFBundleVersion': '1',
'LSMinimumSystemVersion': '10.12',
'LSUIElement': True,
'NSHumanReadableCopyright': ('Copyright (c) 2017 Eric Brown. '
'All rights reserved.'),
},
'packages': ['rumps'],
}
setup(
name='SlackStatus',
version='1.0',
app=['main.py'],
author='Eric Brown',
data_files=DATA_FILES,
options={'py2app': OPTIONS},
packages=find_packages(),
setup_requires=[
'py2app',
'pyobjc-framework-CalendarStore',
'pyobjc-framework-CoreWLAN',
'pyobjc-framework-Quartz',
],
)