-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (45 loc) · 1.04 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
[tool.briefcase]
project_name = "Hello Odoo"
bundle = "com.example"
version = "0.0.1"
url = "https://example.com/helloodoo"
license = "MIT license"
author = 'Gustavo Orrillo'
author_email = "[email protected]"
[tool.briefcase.app.helloodoo]
formal_name = "Hello Odoo"
description = "My first Odoo Beeware application"
icon = "src/helloodoo/resources/helloodoo"
sources = ['src/helloodoo']
requires = [
]
[tool.briefcase.app.helloodoo.macOS]
requires = [
'toga-cocoa>=0.3.0.dev32',
'std-nslog==1.0.0'
]
[tool.briefcase.app.helloodoo.linux]
requires = [
'toga-gtk>=0.3.0.dev32',
]
system_requires = [
'libgirepository1.0-dev',
'libcairo2-dev',
'libpango1.0-dev',
'libwebkitgtk-3.0-0',
'gir1.2-webkit-3.0',
]
[tool.briefcase.app.helloodoo.windows]
requires = [
'toga-winforms>=0.3.0.dev32',
]
# Mobile deployments
[tool.briefcase.app.helloodoo.iOS]
requires = [
'toga-iOS>=0.3.0.dev32',
'std-nslog==1.0.0'
]
[tool.briefcase.app.helloodoo.android]
requires = [
'toga-android>=0.3.0.dev32'
]