|
13 | 13 | "python_version_max": "4.0", |
14 | 14 | "python_version_dev": "{{ cookiecutter._python_versions[-1] }}", |
15 | 15 | "repository": "https://github.com/{{ cookiecutter.github_username }}/{{ cookiecutter.package_name }}", |
| 16 | + "build_backend": [ |
| 17 | + "uv", |
| 18 | + "hatch" |
| 19 | + ], |
16 | 20 | "readme_badges": true, |
17 | 21 | "create_github_repo": true, |
18 | 22 | "make_github_repo_private": false, |
19 | | - "license": ["apache-2.0", "mit", "agpl-3.0", "bsd-2-clause", "bsd-3-clause", "bsl-1.0", "cc0-1.0", "epl-2.0", "gpl-2.0", "gpl-3.0", "lgpl-2.1", "no-license"], |
| 23 | + "license": [ |
| 24 | + "Apache-2.0", |
| 25 | + "MIT", |
| 26 | + "AGPL-3.0", |
| 27 | + "BSD-2-Clause", |
| 28 | + "BSD-3-Clause", |
| 29 | + "BSL-1.0", |
| 30 | + "CC0-1.0", |
| 31 | + "EPL-2.0", |
| 32 | + "GPL-2.0", |
| 33 | + "GPL-3.0", |
| 34 | + "LGPL-2.1", |
| 35 | + "no-license" |
| 36 | + ], |
20 | 37 | "use_pydantic_settings": true, |
21 | 38 | "log_to_file": true, |
22 | 39 | "python_testing_matrix": [ |
|
47 | 64 | "python_version_min": "Minimum Python version (inclusive)", |
48 | 65 | "python_version_max": "Maximum Python version (non-inclusive)", |
49 | 66 | "python_version_dev": "Python version to use in development", |
| 67 | + "build_backend": { |
| 68 | + "__prompt__":"Package build backend", |
| 69 | + "uv": "UV build backend", |
| 70 | + "hatch": "Hatchling, the official PyPA build backend" |
| 71 | + }, |
50 | 72 | "repository": "GitHub project URL", |
51 | 73 | "readme_badges": "Include badges in project README.md", |
52 | 74 | "create_github_repo": "Create public GitHub repository and sync", |
53 | 75 | "make_github_repo_private": "Make the GitHub repository private", |
54 | 76 | "license": { |
55 | 77 | "__prompt__":"Pick a license for this project", |
56 | | - "apache-2.0": "Apache License 2.0", |
57 | | - "mit": "MIT License", |
58 | | - "agpl-3.0": "GNU Affero General Public License v3.0", |
59 | | - "bsd-2-clause": "BSD 2-Clause 'Simplified' License", |
60 | | - "bsd-3-clause": "BSD 3-Clause 'New' or 'Revised' License", |
61 | | - "bsl-1.0": "Boost Software License 1.0", |
62 | | - "cc0-1.0": "Creative Commons Zero v1.0 Universal", |
63 | | - "epl-2.0": "Eclipse Public License 2.0", |
64 | | - "gpl-2.0": "GNU General Public License v2.0", |
65 | | - "gpl-3.0": "GNU General Public License v3.0", |
66 | | - "lgpl-2.1": "GNU Lesser General Public License v2.1", |
| 78 | + |
| 79 | + "Apache-2.0": "Apache License 2.0", |
| 80 | + "MIT": "MIT License", |
| 81 | + "AGPL-3.0": "GNU Affero General Public License v3.0", |
| 82 | + "BSD-2-Clause": "BSD 2-Clause 'Simplified' License", |
| 83 | + "BSD-3-Clause": "BSD 3-Clause 'New' or 'Revised' License", |
| 84 | + "BSL-1.0": "Boost Software License 1.0", |
| 85 | + "CC0-1.0": "Creative Commons Zero v1.0 Universal", |
| 86 | + "EPL-2.0": "Eclipse Public License 2.0", |
| 87 | + "GPL-2.0": "GNU General Public License v2.0", |
| 88 | + "GPL-3.0": "GNU General Public License v3.0", |
| 89 | + "LGPL-2.1": "GNU Lesser General Public License v2.1", |
67 | 90 | "no-license": "No License" |
68 | 91 | }, |
69 | 92 | "os_testing_matrix": { |
|
0 commit comments