initial template for app based on wuttaweb

with e.g. `poser install` command
This commit is contained in:
Lance Edgar 2024-11-26 11:16:09 -06:00
commit 46b33a622f
18 changed files with 344 additions and 0 deletions

12
cookiecutter.json Normal file
View file

@ -0,0 +1,12 @@
{
"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('-', '') }}"
}