21:c36e549a7f12 | 22:c3e95212e3f0 |
---|---|
1 from setuptools import setup | |
2 | |
3 APP = ['borgend.py'] | |
4 DATA_FILES = [] | |
5 OPTIONS = { | |
6 'argv_emulation': True, | |
7 'plist': { | |
8 'LSUIElement': True, | |
9 }, | |
10 'packages': ['rumps', 'keyring'], | |
11 } | |
12 | |
13 setup( | |
14 app=APP, | |
15 data_files=DATA_FILES, | |
16 options={'py2app': OPTIONS}, | |
17 setup_requires=['py2app'], | |
18 ) |