2024-11-26 11:16:09 -06:00
|
|
|
{
|
|
|
|
|
"full_name": "Your Name",
|
|
|
|
|
"email": "you@example.com",
|
|
|
|
|
"project_name": "Playdough",
|
|
|
|
|
"distribution_name": "{{ cookiecutter.project_name.replace(' ', '-') }}",
|
|
|
|
|
"package_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
|
|
|
|
|
"repo_name": "{{ cookiecutter.package_name }}",
|
|
|
|
|
"project_short_description": "My web app",
|
2026-01-04 21:11:35 -06:00
|
|
|
"continuum_data_versioning": false,
|
2024-11-26 11:16:09 -06:00
|
|
|
"open_source_license": ["MIT license", "BSD license", "ISC license", "Apache Software License 2.0", "GNU General Public License v3", "Not open source"],
|
|
|
|
|
"__egg_name": "{{ cookiecutter.distribution_name.replace('-', '-') }}",
|
|
|
|
|
"__studly_prefix": "{{ cookiecutter.project_name.replace(' ', '').replace('-', '') }}"
|
|
|
|
|
}
|