cookiecutter-wuttaweb/cookiecutter.json
Lance Edgar 46b33a622f initial template for app based on wuttaweb
with e.g. `poser install` command
2024-11-26 11:16:09 -06:00

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('-', '') }}"
}