pyproject.toml

changeset 137
41eca7c39c39
parent 135
45c1a38f8709
equal deleted inserted replaced
135:45c1a38f8709 137:41eca7c39c39
1 [metadata]
2 name = "borgend"
3 version = "0.1.0"
4 author = "Tuomo Valkonen"
5 author_email = "tuomov@iki.fi"
6 url = "https://tuomov.iki.fi/software/borgend/"
7
8 [options]
9 packages = "borgend"
10 python_requires = ">=3.8"
11 install_requires = [
12 "rumps",
13 "keyring",
14 "PyYAML",
15 "xdg;platform_system!='darwin'"
16 ]
17 app = "borgend/__main__.py"
18
19 [build-system]
20 requires = ["setuptools", "wheel", "py2app"]
21 build-backend = "setuptools.build_meta"
22
23 [options.entry_points]
24 console_scripts = { borgend = "borgend.__main__:main" }
25
26 [options.py2app]
27 argv_emulation = false
28 plist = { LSUIElement = true }
29 excludes = ['wx', 'matplotlib', 'numpy', 'scipy', 'sip']
30

mercurial