-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 690 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 690 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
"""
This is a setup.py script generated by py2applet
Usage:
python setup.py py2app
"""
from setuptools import setup
setup(
app=[ 'macApp.py' ],
options=dict(
py2app=dict(
packages=['wx'],
includes=['mako.cache'],
resources=['constructor/resources', 'constructor/blocks'],
plist=dict(
CFBundleName = "Processes",
CFBundleShortVersionString = "0.0.1", # must be in X.X.X format
CFBundleGetInfoString = "Processes 0.0.1",
CFBundleExecutable = "Processes",
CFBundleIdentifier = "uk.co.jonsimpson.Processes",
),
)
),
setup_requires=['py2app'],
)