From 84aa10ae8dbc46ccf8201e8c69efce132fcf7bed Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Sun, 7 Oct 2018 04:00:19 -0700 Subject: Add pyramid_jinja2 as a requirement. Carry forward previous setup.py changes. --- docs/quick_tutorial/jinja2/setup.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'docs/quick_tutorial/jinja2') diff --git a/docs/quick_tutorial/jinja2/setup.py b/docs/quick_tutorial/jinja2/setup.py index a93cf6a73..86f177866 100644 --- a/docs/quick_tutorial/jinja2/setup.py +++ b/docs/quick_tutorial/jinja2/setup.py @@ -2,13 +2,22 @@ from setuptools import setup requires = [ 'pyramid', + 'pyramid_chameleon', + 'pyramid_debugtoolbar', + 'pyramid_jinja2', 'waitress', ] setup(name='tutorial', install_requires=requires, + extras_require={ + 'test': [ + 'pytest', + 'webtest', + ], + }, entry_points="""\ [paste.app_factory] main = tutorial:main """, -) \ No newline at end of file + ) -- cgit v1.2.3