-
-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathcookiecutter.json
25 lines (25 loc) · 970 Bytes
/
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
{
"format": "Xcode",
"formal_name": "App Name",
"app_name": "{{ cookiecutter.formal_name|lower|replace(' ', '-') }}",
"class_name": "{{ cookiecutter.formal_name.title().replace(' ','').replace('-','').replace('!','').replace('.','').replace(',','') }}",
"module_name": "{{ cookiecutter.app_name|replace('-', '_') }}",
"author": "Example Corporation",
"bundle": "com.example",
"bundle_identifier": "{{ cookiecutter.bundle }}.{{ cookiecutter.app_name|replace('_', '-') }}",
"splash_background_color": "#FFFFFF",
"info": "",
"version": "1.0",
"build": "1",
"python_version": "3.X.0",
"iphoneos_deployment_target": "13.0",
"_copy_without_render": [
".gitignore",
"*.png"
],
"_extensions": [
"briefcase.integrations.cookiecutter.PythonVersionExtension",
"briefcase.integrations.cookiecutter.RGBExtension",
"briefcase.integrations.cookiecutter.PListExtension"
]
}