-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (28 loc) · 761 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (28 loc) · 761 Bytes
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
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
APP = ["quick-gray.py"]
APP_NAME = "QuickGrayscale"
DATA_FILES = ["status-bar-logo.png", "status-bar-logo--dark.png"]
OPTIONS = {
"iconfile":"./assets/gq.icns",
"plist": {
"CFBundleName": "QuickGrayscale",
"CFBundleDisplayName": "Quick Grayscale",
"CFBundleIdentifier": "com.shubham.quickgrayscale",
"CFBundleVersion": "0.1.2,
"CFBundleShortVersionString": "0.1.2",
"LSUIElement": True # Launch on startup
},
"packages": ["rumps"]
}
setup(
name="Quick Grayscale",
app=APP,
data_files=DATA_FILES,
options={"py2app": OPTIONS},
setup_requires=["py2app"]
)