setup.py

Wed, 24 Jan 2018 09:15:36 +0000

author
Tuomo Valkonen <tuomov@iki.fi>
date
Wed, 24 Jan 2018 09:15:36 +0000
changeset 59
8d0a815022cc
parent 56
d63f6e9a4633
child 60
10bd7e3906d9
permissions
-rw-r--r--

Oops, accidentally calling the wrong function (+log message clarification)

from setuptools import setup

APP = ['borgend.py']
DATA_FILES = []
OPTIONS = {
    'argv_emulation': False,
    'plist': {
        'LSUIElement': True,
    },
    'packages': ['rumps', 'keyring', 'pyyaml', 'xdg'],
}

setup(
    app=APP,
    data_files=DATA_FILES,
    options={'py2app': OPTIONS},
    setup_requires=['py2app'],
)

mercurial