forked from scverse/cookiecutter-scverse
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
52 lines (52 loc) · 2.04 KB
/
Copy pathcookiecutter.json
File metadata and controls
52 lines (52 loc) · 2.04 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"project_name": "project-name",
"package_name": "{{ cookiecutter.project_name|lower|replace('-', '_') }}",
"project_description": "A very interesting piece of code",
"author_full_name": "Your Name",
"author_email": "yourname@example.com",
"github_user": "your_github_username",
"github_repo": "{{ cookiecutter.project_name }}",
"license": [
"MIT License",
"BSD 2-Clause License",
"BSD 3-Clause License",
"Apache License Version 2.0",
"GNU General Public License Version 3",
"Unlicense"
],
"ide_integration": true,
"issue_categorization": ["labels", "issue types"],
"_copy_without_render": [
".github/workflows/build.yaml",
".github/workflows/test.yaml",
"docs/_templates/autosummary/**.rst"
],
"_exclude_on_template_update": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"docs/api.md",
"docs/index.md",
"docs/notebooks/example.ipynb",
"docs/references.bib",
"docs/references.md",
"src/**",
"tests/**"
],
"_render_devdocs": false,
"_jinja2_env_vars": {
"lstrip_blocks": true,
"trim_blocks": true
},
"__prompts__": {
"project_name": "Your project’s name",
"package_name": "If the Python package name differs from the project name, edit it now",
"project_description": "A short one-line description of what your project does",
"author_full_name": "Your complete name",
"author_email": "The e-mail address your package’s users can contact you under",
"github_user": "The GitHub username or org the project is to be published under",
"github_repo": "If the repo name should differ from the project name, edit it now",
"ide_integration": "Whether to generate IDE configuration files",
"issue_categorization": "How to categorize issues in the issue templates. “issue types” only works in GitHub organizations, while “labels” also works in personal repos."
}
}