-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
27 lines (27 loc) · 1.22 KB
/
cookiecutter.json
File metadata and controls
27 lines (27 loc) · 1.22 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
{
"full_name": "Bill White",
"email": "bill.white@griggsinst.com",
"git_repository_username": "poppa",
"project_name" : "Default Project",
"project_slug" : "{{cookiecutter.project_name|replace('+', 'p')|slugify }}",
"project_release" : "0.0.1",
"license": ["GPL-3.0-or-later", "MIT", "BSD-2-Clause", "GPL-3.0-only", "LGPL-3.0-only", "LGPL-3.0-or-later", "None"],
"remote_url" : "None",
"init_git_repository" : [ "Yes" , "No" ],
"add_git_initial_files" : [ "Yes" , "No" ],
"commit_git_repository" : [ "Yes" , "No" ],
"repo_name" : "{%- if cookiecutter.remote_url == 'None' -%}{{ cookiecutter.project_name|replace('+', 'p')|slugify }}{% else %}{{ cookiecutter.remote_url.split('/')[-1]|replace('.git', '')}}{%- endif -%}",
"mainapp": "cmapp1",
"mainlib": "cmutil",
"project_short_description": "A Template for CMake projects with Google Test and Google Mock support.",
"cmake_generator": "Ninja",
"readthedocs": ["Yes", "No"],
"doxygen": ["Yes", "No"],
"cpp_minimum_standard": ["14", "17", "20"],
"_extensions": [
"local_extensions.PrecommitExtension",
"local_extensions.ShortcutExtension",
"local_extensions.CurrentDateExtension"
],
"install_prefix":"/usr/local"
}