forked from woltapp/wolt-python-package-cookiecutter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcookiecutter.json
59 lines (59 loc) · 1.2 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
49
50
51
52
53
54
55
56
57
58
59
{
"author_name": "Your name",
"author_email": "Your email address (eq. [email protected])",
"github_username": "",
"project_name": "Name of the project (will be shown e.g. as the title in the readme)",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '-') }}",
"package_name": "{{ cookiecutter.project_slug.replace('-', '_') }}",
"project_short_description": "A short description of the project",
"releasable": true,
"python_version": [
"3.9+",
"3.10+",
"3.11+",
"3.12+",
"3.13+"
],
"_python_version_specs": {
"3.9+": {
"versions": [
"3.9",
"3.10",
"3.11",
"3.12",
"3.13"
]
},
"3.10+": {
"versions": [
"3.10",
"3.11",
"3.12",
"3.13"
]
},
"3.11+": {
"versions": [
"3.11",
"3.12",
"3.13"
]
},
"3.12+": {
"versions": [
"3.12",
"3.13"
]
},
"3.13+": {
"versions": [
"3.13"
]
}
},
"__prompts__":
{
"releasable": "Do you want to version and release this package to PyPI?"
},
"_jinja2_env_vars": {"lstrip_blocks": true, "trim_blocks": true}
}