generated from ImperialCollegeLondon/poetry_template_2
-
Notifications
You must be signed in to change notification settings - Fork 2
/
cookiecutter.json
33 lines (33 loc) · 1.69 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
{
"project_name": "My Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_') }}",
"project_description": "[Description for project.]",
"author": "Jane Doe",
"author_email": "jane_doe@imperial.ac.uk",
"rse_team_as_coauthor": false,
"use_bsd3_licence": false,
"packaging": [
"poetry",
"pip-tools"
],
"mkdocs": false,
"add_precommit_workflows": true,
"automerge_bot_prs": false,
"use_windows_ci_runner": false,
"use_macos_ci_runner": false,
"__prompts__": {
"project_name": "Enter a human-readable name for the project",
"project_slug": "Enter a name for the Python package",
"project_description": "Enter a brief description of the project",
"author": "Enter your full name",
"author_email": "Enter your email address",
"rse_team_as_coauthor": "Whether to add the RSE team as a co-author (say no if you aren't part of the RSE team!)",
"packaging": "Select the Python packaging tool you wish to use",
"mkdocs": "Whether to provide a skeleton for documentation, using MkDocs and publishing on GitHub Pages",
"use_bsd3_licence": "Whether to use Imperial's default open-source licence (BSD 3-clause)",
"add_precommit_workflows": "Add Github Actions to run pre-commit hooks (only needed for private repositories)",
"use_windows_ci_runner": "Add a GitHub Actions runner for Windows (needed if your software targets Windows)",
"use_macos_ci_runner": "Add a GitHub Actions runner for macOS (needed if your software targets macOS - ARM)",
"automerge_bot_prs": "Whether to automatically merge PRs from bots including dependabot"
}
}