-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
25 lines (25 loc) · 1003 Bytes
/
cookiecutter.json
File metadata and controls
25 lines (25 loc) · 1003 Bytes
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
{
"author": "Guillaume Charbonnier",
"email": "guillaume.charbonnier@araymond.com",
"project_title": "Demo Project",
"project_name": "{{ cookiecutter.project_title.lower().replace(' ', '-') }}",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-','_') }}",
"repo_name": "{{ cookiecutter.project_name }}",
"repo_org": "quara-dev",
"repo_url": "https://github.com/{{ cookiecutter.repo_org }}/{{ cookiecutter.project_name}}",
"issues_url": "{{ cookiecutter.repo_url }}/issues",
"project_short_description": "",
"version": "0.1.0",
"requires_python": ">=3.8,<4.0",
"license": "Apache-2.0",
"init_git_repo": true,
"command_line_interface": [
"No command-line interface",
"Argparse",
"Click",
"Typer"
],
"publish_to_pypi": false,
"sonarcloud_organization": "{{ cookiecutter.repo_org }}",
"sonarcloud_key": "{{ cookiecutter.repo_org }}_{{ cookiecutter.project_name }}"
}