-
-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathcookiecutter.json
More file actions
31 lines (31 loc) · 1.09 KB
/
cookiecutter.json
File metadata and controls
31 lines (31 loc) · 1.09 KB
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
{
"format": "app",
"formal_name": "App Name",
"app_name": "{{ cookiecutter.formal_name|lower|replace(' ', '-') }}",
"module_name": "{{ cookiecutter.app_name|replace('-', '_') }}",
"bundle": "com.example",
"version_triple": "0.0.1",
"author": "Example Corporation",
"author_email": "contact@example.com",
"url": "http://example.com",
"description": "Short description of app",
"console_app": false,
"guid": "1409c8f5-c276-4cf3-a2fd-defcbdfef9a2",
"install_scope": "",
"use_full_install_path": true,
"package_path": "C:\\path\\to\\content",
"binary_path": "{{ cookiecutter.formal_name }}.exe",
"install_launcher": true,
"document_types": "",
"install_options": "",
"uninstall_options": "",
"installer_path": "_installer",
"post_install_script": "",
"pre_uninstall_script": "",
"python_version": "3.X.0",
"_extensions": [
"briefcase.integrations.cookiecutter.PythonVersionExtension",
"briefcase.integrations.cookiecutter.UUIDExtension",
"briefcase.integrations.cookiecutter.XMLExtension"
]
}