-
-
Notifications
You must be signed in to change notification settings - Fork 691
/
Copy pathpyproject.toml
61 lines (50 loc) · 1.05 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
54
55
56
57
58
59
60
61
[build-system]
requires = ["briefcase"]
[tool.briefcase]
project_name = "Resize Test"
bundle = "org.beeware.toga.examples"
version = "0.0.1"
url = "https://beeware.org"
license.file = "LICENSE"
author = "Tiberius Yak"
author_email = "tiberius@beeware.org"
[tool.briefcase.app.resize]
formal_name = "Resize Test"
description = "A testing app"
sources = ["resize"]
requires = [
"../../core",
]
[tool.briefcase.app.resize.macOS]
requires = [
"../../cocoa",
"std-nslog>=1.0.0",
]
[tool.briefcase.app.resize.linux]
requires = [
"../../gtk",
]
[tool.briefcase.app.resize.windows]
requires = [
"../../winforms",
]
# Mobile deployments
[tool.briefcase.app.resize.iOS]
requires = [
"../../iOS",
"std-nslog>=1.0.0",
]
[tool.briefcase.app.resize.android]
requires = [
"../../android",
]
base_theme = "Theme.MaterialComponents.Light.DarkActionBar"
build_gradle_dependencies = [
"com.google.android.material:material:1.11.0",
]
# Web deployment
[tool.briefcase.app.resize.web]
requires = [
"../../web",
]
style_framework = "Shoelace v2.3"