forked from samschott/maestral-cocoa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (48 loc) · 1.27 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[tool.briefcase]
project_name = "Maestral"
bundle = "com.samschott"
version = "1.5.3.dev0"
url = "https://maestral.app"
license = "MIT license"
author = "Sam Schott"
author_email = "[email protected]"
[tool.briefcase.app.maestral-cocoa]
formal_name = "Maestral"
description = "An open-source Dropbox client for macOS and Linux"
icon = "icon/maestral"
sources = ["src/maestral_cocoa"]
requires = [
"bugsnag",
"click",
"importlib_metadata;python_version<'3.8'",
"importlib_resources;python_version<'3.9'",
"maestral@git+https://github.com/samschott/maestral",
"markdown2",
"rubicon-objc>=0.4.1",
"toga==0.3.0.dev29",
]
template = "https://github.com/samschott/briefcase-macOS-Xcode-template"
template_branch = "maestral"
[tool.briefcase.app.maestral-cocoa.macOS]
agent = 1
requires = [
"toga-cocoa>=0.3.0.dev25",
]
[tool.briefcase.app.maestral-cocoa.linux]
requires = [
"toga-gtk>=0.3.0.dev25",
]
system_requires = [
"libgirepository1.0-dev",
"libcairo2-dev",
"libpango1.0-dev",
"libwebkitgtk-3.0-0",
"gir1.2-webkit-3.0",
]
[tool.black]
line-length = 88
target-version = ["py36", "py37", "py38", "py39"]
extend-exclude = 'macOS/(.*?)'
[build-system]
requires = ["setuptools>=41.0", "wheel"]
build-backend = "setuptools.build_meta"