forked from osprey-oss/cookiecutter-uv
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcookiecutter.json
More file actions
52 lines (52 loc) · 893 Bytes
/
Copy pathcookiecutter.json
File metadata and controls
52 lines (52 loc) · 893 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"author": "Florian Maas",
"email": "fpgmaas@gmail.com",
"author_github_handle": "fpgmaas",
"project_name": "example-project",
"project_slug": "{{cookiecutter.project_name|lower|replace('-', '_')}}",
"project_description": "This is a template repository for Python projects that use uv for their dependency management.",
"layout": [
"flat",
"src"
],
"include_github_actions": [
"y",
"n"
],
"publish_to_pypi": [
"y",
"n"
],
"deptry": [
"y",
"n"
],
"mkdocs": [
"y",
"n"
],
"codecov": [
"y",
"n"
],
"dockerfile": [
"y",
"n"
],
"devcontainer": [
"y",
"n"
],
"type_checker": [
"mypy",
"ty"
],
"open_source_license": [
"MIT license",
"BSD license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3",
"Not open source"
]
}