forked from JoseRZapata/data-science-project-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cookiecutter.json
40 lines (40 loc) · 1.24 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
{
"project_name": "Project Name",
"repo_name": "{{ cookiecutter.project_name.strip().replace(' ', '-').replace('_', '-').lower() }}",
"github_username": "",
"author_name": "Peter Parker",
"author_email": "[email protected]",
"description": "A short description of the project.",
"compatible_python_versions": ["3.9", "3.10", "3.11", "3.12"],
"mkdocs": true,
"codecov": true,
"license": [
"MIT License",
"BSD License",
"ISC License",
"GNU General Public License v3",
"Apache Software License 2.0",
"Not open source"
],
"__prompts__": {
"project_name": "Project Name (e.g. My awesome data science project)",
"repo_name": "Repository name (e.g. my-awesome-data-science-project)",
"github_username": "GitHub username (e.g. JoseRZapata)",
"author_name": "Author full name (or your organization/company/team)",
"author_email": "Your email address or personal website",
"mkdocs": "Automatic docs with mkdocs?",
"codecov":"pytest coverage report with codecov?"
},
"_copy_without_render": [
".code_quality/*",
".vscode/*",
"config/*",
"data/*",
"src/*",
"tests/*",
".editorconfig",
".pre-commit-config.yaml",
"codecov.yaml",
"docs/*"
]
}