-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (31 loc) · 767 Bytes
/
setup.py
File metadata and controls
34 lines (31 loc) · 767 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
34
from setuptools import setup
APP = ["Peramesa.py"]
DATA_FILES = ["help_text.txt", "help_text_en.txt"]
OPTIONS = {
"argv_emulation": False,
"includes": [
"tkinter",
"tkinter.filedialog",
"tkinter.messagebox",
],
"packages": [
"pythonosc",
"tkmacosx",
],
"iconfile": "pera.icns",
"plist": {
"CFBundleName": "Peramesa",
"CFBundleDisplayName": "Peramesa",
"CFBundleIdentifier": "com.luismaperamato.peramesa",
"CFBundleShortVersionString": "3.0.0",
"CFBundleVersion": "3.0.0",
"NSHighResolutionCapable": True,
},
}
setup(
app=APP,
name="Peramesa",
data_files=DATA_FILES,
options={"py2app": OPTIONS},
setup_requires=["py2app"],
)