python/cookiecutter.json

19 lines
854 B
JSON
Raw Normal View History

2023-05-15 13:23:02 +02:00
{
"project_name": "",
"project_short_description": "",
"full_name": "",
"email": "",
"git_user": "",
"project_slug": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
"gitea_url": "",
"project_url": "{{ cookiecutter.gitea_url }}/{{ cookiecutter.git_user }}/{{ cookiecutter.project_slug }}",
"generate_gitea_project": [ true, false ],
2023-05-19 17:16:55 +02:00
"configure_ci": [ true, false ],
"woodpecker_gitea_user": "ci",
"woodpecker_server": "ci.pains-perdus.fr",
2023-05-15 13:23:02 +02:00
"git_origin": "{{ cookiecutter.gitea_url.replace('https://', 'gitea@').replace('http://', 'gitea') }}:{{ cookiecutter.git_user }}/{{ cookiecutter.project_slug }}.git",
"version": "0.1.0",
2023-05-16 12:53:02 +02:00
"open_source_license": ["AGPL-3.0-only", "GPL-3.0-only", "MIT", "BSD-3-Clause", "ISC", "Apache-2.0", "Proprietary"],
2023-05-15 13:23:02 +02:00
"python_min_version": "3.10"
}