-
-
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) · 799 Bytes
/
cookiecutter.json
File metadata and controls
32 lines (32 loc) · 799 Bytes
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
{
"project_name": "kickstart-python-project",
"package_name": "{{ cookiecutter.project_name.replace('-', '_') }}",
"description": "Write project summary.",
"author": "Wouter Vanden Hove",
"email": "wouter@libranet.eu",
"git_platform": [
"github",
"gitlab"
],
"github_user": "libranet",
"version": "0.1",
"copyright_year": "{% now 'utc', '%Y' %}",
"license": [
"MIT"
],
"development_status": [
"Development Status :: 4 - Beta"
],
"minimum_python": "3.13",
"with_django": "0",
"with_flask": "0",
"with_fastapi": "0",
"with_cyclopts": "1",
"with_postgres": "0",
"support_rtd": "0",
"__package_name_snake_case": "{{ cookiecutter.package_name|slugify(separator='_') }}",
"_copy_without_render": [
"justfile",
".just/*.justfile"
]
}