forked from scientific-python/cookie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
48 lines (48 loc) · 1.85 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
43
44
45
46
47
48
{
"project_name": "package",
"org": "org",
"url": "https://github.com/{{ cookiecutter.org }}/{{ cookiecutter.project_name }}",
"full_name": "My Name",
"email": "[email protected]",
"project_short_description": "A great package.",
"license": ["BSD", "Apache", "MIT"],
"backend": [
"hatch",
"flit",
"pdm",
"poetry",
"setuptools",
"pybind11",
"skbuild",
"mesonpy",
"maturin"
],
"vcs": true,
"__year": "{% now 'utc', '%Y' %}",
"__project_slug": "{{ cookiecutter.project_name | lower | replace('-', '_') | replace('.', '_') }}",
"__type": "{{ 'compiled' if cookiecutter.backend in ['pybind11', 'skbuild', 'mesonpy', 'maturin'] else 'pure' }}",
"__answers": "",
"__ci": "{{ 'github' if 'github.com' in cookiecutter.url else 'gitlab' }}",
"__prompts__": {
"project_name": "The name of your project",
"org": "The name of your (GitHub?) org",
"url": "The url to your GitHub or GitLab repository",
"full_name": "Your name",
"email": "Your email",
"project_short_description": "A short description of your project",
"license": "Select a license",
"backend": {
"__prompt__": "Choose a build backend",
"hatch": "Hatchling - Pure Python (recommended)",
"flit": "Flit-core - Pure Python (minimal)",
"pdm": "PDM-backend - Pure Python",
"poetry": "Poetry - Pure Python",
"setuptools": "Setuptools - Pure Python",
"pybind11": "Setuptools and pybind11 - Compiled C++",
"skbuild": "Scikit-build-core - Compiled C++ (recommended)",
"mesonpy": "Meson-python - Compiled C++ (also good)",
"maturin": "Maturin - Compiled Rust (recommended)"
},
"vcs": "Use version control for versioning"
}
}