-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
26 lines (26 loc) · 915 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
26
{
"full_name": "Ivan Pina",
"email": "[email protected]",
"username": "CIvanPiMa",
"project_name": "My Amazing Project",
"repo_name": "{{ cookiecutter.project_name.lower().replace(' ','_') }}",
"repo_path": "{{ cookiecutter.username }}/{{ cookiecutter.repo_name }}",
"main_branch": "main",
"project_short_description": "TBD",
"version": "0.0.0",
"testing": ["TDD", "BDD"],
"use_cli": ["yes", "no"],
"ide": ["vscode", "other"],
"license": [
"no",
"MIT license",
"ISC license",
"BSD 2-Clause License",
"BSD 3-Clause License",
"Apache Software License 2.0",
"GNU Lesser General Public License v3 (LGPLv3)",
"GNU Lesser General Public License v2.1 (LGPLv2)",
"GNU Lesser General Public License v3 or later (LGPLv3+)",
"GNU Lesser General Public License v2.1 or later (LGPLv2+)"
]
}