add prompt for continuum data versioning; add dep if set
This commit is contained in:
parent
19a64021df
commit
62da74bf1c
2 changed files with 5 additions and 0 deletions
|
|
@ -6,6 +6,7 @@
|
|||
"package_name": "{{ cookiecutter.project_name.lower().replace(' ', '_').replace('-', '_') }}",
|
||||
"repo_name": "{{ cookiecutter.package_name }}",
|
||||
"project_short_description": "My web app",
|
||||
"continuum_data_versioning": false,
|
||||
"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('-', '') }}"
|
||||
|
|
|
|||
|
|
@ -22,7 +22,11 @@ classifiers = [
|
|||
license = {text = "{{cookiecutter.open_source_license}}"}
|
||||
dependencies = [
|
||||
"psycopg2",
|
||||
{% if cookiecutter.continuum_data_versioning %}
|
||||
"WuttaWeb[continuum]",
|
||||
{% else %}
|
||||
"WuttaWeb",
|
||||
{% endif %}
|
||||
]
|
||||
|
||||
[project.scripts]
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue