setup.py

Mon, 20 Apr 2020 09:31:30 -0500

author
Tuomo Valkonen <tuomov@iki.fi>
date
Mon, 20 Apr 2020 09:31:30 -0500
changeset 123
385d4eada9ed
parent 118
aadd60a24bc8
child 135
45c1a38f8709
permissions
-rw-r--r--

Move license to its own LICENSE file.

from setuptools import setup

APP = ['borgend.py']
DATA_FILES = []
OPTIONS = {
    'argv_emulation': False,
    'plist': {
        'LSUIElement': True,
    },
    'packages': ['rumps', 'keyring', 'yaml'],
    'includes': ['xdg'],
    'excludes': ['wx', 'PyQt5', 'matplotlib', 'numpy', 'scipy'],
}

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

mercurial