forked from beeware/briefcase-windows-app-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbriefcase.toml
More file actions
25 lines (24 loc) · 845 Bytes
/
briefcase.toml
File metadata and controls
25 lines (24 loc) · 845 Bytes
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
# Generated using Python {{ cookiecutter.python_version }}
[briefcase]
target_version = "0.3.24"
[paths]
app_path = "src/app"
app_packages_path = "src/app_packages"
support_path = "src"
{# Minor versions for 3.9, 3.10, and 3.11 cannot be bumped further -#}
{# since Python is not hosting embeddable zipped versions of them -#}
{{ {
"3.9": "support_revision = 13",
"3.10": "support_revision = 11",
"3.11": "support_revision = 9",
"3.12": "support_revision = 9",
"3.13": "support_revision = 3",
}.get(cookiecutter.python_version|py_tag, "") }}
stub_binary_revision = 8
icon = "icon.ico"
{% for document_type_id, document_type in cookiecutter.document_types.items() -%}
document_type_icon.{{ document_type_id }} = "{{ cookiecutter.app_name }}-{{ document_type_id }}.ico"
{% endfor %}
cleanup_paths = [
"src/python*.exe",
]