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:26:35 -0700 |
| commit | 84aa10ae8dbc46ccf8201e8c69efce132fcf7bed (patch) | |
| tree | c892fb1766116fd7db17140373a76282cffdc712 /docs/quick_tutorial/jinja2 | |
| parent | 4e1175a5d701afdc98c09fd4dfe0b90db00a4e3a (diff) | |
| download | pyramid-84aa10ae8dbc46ccf8201e8c69efce132fcf7bed.tar.gz pyramid-84aa10ae8dbc46ccf8201e8c69efce132fcf7bed.tar.bz2 pyramid-84aa10ae8dbc46ccf8201e8c69efce132fcf7bed.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 + ) |
