-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcookiecutter.json
56 lines (56 loc) · 1.58 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
{
"project_name": "Python Project",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"project_description": "Short Description for Python Project",
"github_username": "Lee-W",
"github_url": "https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.project_slug }}",
"author_name": "Wei Lee",
"author_email": "weilee.rx@gmail.com",
"python_version": [
"3.9",
"3.10",
"3.11",
"3.12",
"3.13"
],
"dependency_management_tool": [
"uv",
"poetry",
"pipenv"
],
"default_branch": [
"main",
"master"
],
"use_strict_mypy_config": false,
"build_pypi_package": false,
"build_docker_image": false,
"open_source_license": [
"MIT license",
"BSD 3-Clause license",
"ISC license",
"Apache Software License 2.0",
"GNU General Public License v3",
"Not open source"
],
"auto_detect_update_from_cruft_template": false,
"_template_version": "2.0.0",
"_actions_checkout_version": "v4",
"_actions_setup_python_version": "v5",
"_setup_uv_version": "v3",
"_package_versions": {
"invoke": "2.2.0",
"pytest": "8.3.3",
"coverage": "7.6.7",
"pytest_cov": "6.0.0",
"pytest_mock": "3.14.0",
"mypy": "1.13.0",
"ruff": "0.7.4",
"bandit": "1.7.10",
"pip_audit": "2.7.3",
"commitizen": "3.31.0",
"pre_commit": "4.0.1",
"mkdocs": "1.6.1",
"mkdocs_material": "9.5.45"
}
}