-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
32 lines (32 loc) · 1.02 KB
/
cookiecutter.json
File metadata and controls
32 lines (32 loc) · 1.02 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
{
"package_name": "My Python Package",
"package_slug": "{{ cookiecutter.package_name|lower()|replace(' ', '_')|replace('-', '_') }}",
"__project_slug": "{{ cookiecutter.package_slug.replace('_', '-') }}",
"short_description": "This package does...",
"python_version": "3.10",
"__py": "py{{ cookiecutter.python_version.replace('.', '') }}",
"author_name": "Firstname Lastname",
"author_email": "name@example.org",
"version": "0.0.1",
"license": "MIT",
"git_host": [
"GitHub",
"GitLab",
"Other"
],
"__year": "{% now 'utc', '%Y' %}",
"_extensions": [
"jinja2_time.TimeExtension"
],
"__prompts__": {
"package_name": "Select your package name",
"package_slug": "Select your package slug",
"short_description": "Short description",
"python_version": "Minimum Python version",
"author_name": "Author full name",
"author_email": "Author email",
"version": "Initial version",
"license": "Enter the SPDX license classifier",
"git_host": "Select your git provider"
}
}