Wed, 14 Feb 2018 15:23:39 +0000
Disable Notification Centre notifications.
They don't work reliably for some reason, and are in any case annoying
unless the display is somehow fine-tuned.
from setuptools import setup APP = ['borgend.py'] DATA_FILES = [] OPTIONS = { 'argv_emulation': False, 'plist': { 'LSUIElement': True, }, 'packages': ['rumps', 'keyring'], # The following is the real list, byt py2app fails despite # them being installed according to pip3 and everything #'packages': ['rumps', 'keyring', 'xdg', 'pyyaml'], } setup( app=APP, data_files=DATA_FILES, options={'py2app': OPTIONS}, setup_requires=['py2app'], )