forked from beeware/briefcase-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcookiecutter.json
43 lines (43 loc) · 1.34 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
{
"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('-', '_') }}",
"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"
],
"gui_framework": [
"Toga",
"PySide2",
"PySide6",
"PursuedPyBear",
"Pygame",
"PositronDjango",
"PositronStatic",
"None"
],
"test_framework": [
"pytest",
"unittest"
],
"briefcase_version": "Unknown",
"template_source": "Not provided",
"template_branch": "Not provided",
"_extensions": [
"briefcase.integrations.cookiecutter.TOMLEscape"
]
}