diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:00:19 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:00:19 -0700 |
| commit | 18435c3ac41d143c0f42062c095a638f522a30dc (patch) | |
| tree | 563a6ee9e53313c825e3d458b3ee4a6bc9f3e5ca /docs/quick_tutorial/jinja2 | |
| parent | ef01615bf6f8fbc1f78a7e803b4fe59dddcfc59f (diff) | |
| download | pyramid-18435c3ac41d143c0f42062c095a638f522a30dc.tar.gz pyramid-18435c3ac41d143c0f42062c095a638f522a30dc.tar.bz2 pyramid-18435c3ac41d143c0f42062c095a638f522a30dc.zip | |
Add pyramid_jinja2 as a requirement.
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/jinja2')
| -rw-r--r-- | docs/quick_tutorial/jinja2/setup.py | 11 |
1 files changed, 10 insertions, 1 deletions
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 + ) |
