-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcookiecutter.json
42 lines (42 loc) · 1.75 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
{
"project_name": "Python Project",
"__module_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"__module_import": "{{ cookiecutter.__module_slug.replace('-', '_') }}",
"project_namespace_import": "",
"__project_namespace_slug": "{{ cookiecutter.project_namespace_import.replace('_', '-').replace('.', '-') }}",
"project_slug": "{{ (cookiecutter.__project_namespace_slug + '-' if cookiecutter.project_namespace_import else '') + cookiecutter.__module_slug }}",
"__project_import": "{{ (cookiecutter.project_namespace_import + '.' if cookiecutter.project_namespace_import else '') + cookiecutter.__module_import }}",
"__project_src_path": "src/{{ cookiecutter.__project_import.replace('.', '/') }}",
"project_description": "",
"repo_type": [
"CLI",
"library"
],
"entry_point": "{{ cookiecutter.project_slug.rsplit('.', 1)[-1] if cookiecutter.repo_type == 'CLI' else '' }}",
"author_name": "Trail of Bits",
"author_email": "[email protected]",
"github_username": "trailofbits",
"pypi_username": "trailofbits",
"version": "0.0.1",
"documentation": [
"pdoc",
"none"
],
"docstring_coverage": true,
"license": [
"Apache 2.0",
"AGPL v3",
"Proprietary"
],
"_copy_without_render": [
".github/workflows/docs.yml",
".github/workflows/lint.yml",
".github/workflows/tests.yml",
".github/workflows/zizmor.yml"
],
"__prompts__": {
"project_name": "Human-readable project name (translated into module slug and import)",
"project_slug": "The repo and pip install name",
"project_namespace_import": "Optional package namespace (must be valid package import)"
}
}