-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
cookiecutter.json
53 lines (53 loc) · 1.94 KB
/
cookiecutter.json
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
{
"formal_name": "Hello World",
"app_name": "{{ cookiecutter.formal_name|lower|replace(' ', '') }}",
"class_name": "{{ cookiecutter.formal_name.title().replace(' ','').replace('-','').replace('!','').replace('.','').replace(',','') }}",
"module_name": "{{ cookiecutter.app_name|lower|replace('-', '_') }}",
"source_dir": "src/{{ cookiecutter.module_name }}",
"test_source_dir": "tests",
"project_name": "Project Awesome",
"description": "An app that does lots of stuff",
"author": "Jane Developer",
"author_email": "[email protected]",
"bundle": "com.example",
"url": "https://example.com",
"license": [
"BSD license",
"MIT license",
"Apache Software License",
"GNU General Public License v2 (GPLv2)",
"GNU General Public License v2 or later (GPLv2+)",
"GNU General Public License v3 (GPLv3)",
"GNU General Public License v3 or later (GPLv3+)",
"Proprietary",
"Other"
],
"test_framework": [
"pytest",
"unittest"
],
"app_source": "",
"app_start_source": "",
"pyproject_table_briefcase_extra_content": "",
"pyproject_table_briefcase_app_extra_content": "",
"pyproject_table_macOS": "",
"pyproject_table_linux": "",
"pyproject_table_linux_system_debian": "",
"pyproject_table_linux_system_rhel": "",
"pyproject_table_linux_system_suse": "",
"pyproject_table_linux_system_arch": "",
"pyproject_table_linux_appimage": "",
"pyproject_table_linux_flatpak": "",
"pyproject_table_windows": "",
"pyproject_table_iOS": "",
"pyproject_table_android": "",
"pyproject_table_web": "",
"pyproject_extra_content": "",
"briefcase_version": "Unknown",
"template_source": "Not provided",
"template_branch": "Not provided",
"_extensions": [
"briefcase.integrations.cookiecutter.TOMLEscape"
],
"_jinja2_env_vars": {"lstrip_blocks": true, "trim_blocks": true}
}