Added ZODB storages
authorThierry Florac <tflorac@ulthar.net>
Sun, 14 Jan 2018 12:29:02 +0100
changeset 23 befcc8f2519b
parent 22 32fd6f6499f7
child 24 3dfc7249e43a
Added ZODB storages
{{cookiecutter.project_slug}}/setup.py
--- a/{{cookiecutter.project_slug}}/setup.py	Sun Jan 14 12:28:35 2018 +0100
+++ b/{{cookiecutter.project_slug}}/setup.py	Sun Jan 14 12:29:02 2018 +0100
@@ -17,10 +17,13 @@
     'cx_Oracle',
 {%- endif %}
     'fanstatic',
+{%- if cookiecutter.db_type == 'newt' %}
+    'newt.db',
+{%- endif %}
+    'nose',
 {%- if cookiecutter.use_postgresql %}
     'psycopg2',
 {%- endif %}
-    'nose',
     'pyams_alchemy',
     'pyams_catalog',
     'pyams_content',
@@ -64,6 +67,7 @@
 {%- endif %}
     'pyramid_fanstatic',
     'pyramid_ipython',
+    'pyramid_retry',
     'pyramid_tm',
     'pyramid_zcml',
     'pyramid_zodbconn',
@@ -71,6 +75,9 @@
 {%- if cookiecutter.beaker_backend == 'redis' %}
     'redis',
 {%- endif %}
+{%- if cookiecutter.db_type == 'relstorage' %}
+    'relstorage',
+{%- endif %}
     'transaction',
     'waitress',
 {%- if cookiecutter.extension_package %}