13 lines
699 B
JSON
13 lines
699 B
JSON
|
{
|
||
|
"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",
|
||
|
"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('-', '') }}"
|
||
|
}
|