diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:50:51 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:26:35 -0700 |
| commit | 61a44f5a0969d6e61f98fef5ae8710c71e4cbaff (patch) | |
| tree | 6f9429b8c81a0bdd67f3ab440cd2163abe3c95ad /docs/quick_tutorial | |
| parent | 03966fb9850a46a51004d38499e158f3f2bbed2d (diff) | |
| download | pyramid-61a44f5a0969d6e61f98fef5ae8710c71e4cbaff.tar.gz pyramid-61a44f5a0969d6e61f98fef5ae8710c71e4cbaff.tar.bz2 pyramid-61a44f5a0969d6e61f98fef5ae8710c71e4cbaff.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial')
| -rw-r--r-- | docs/quick_tutorial/templating/setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/templating/setup.py b/docs/quick_tutorial/templating/setup.py index 744612371..3ad7f004e 100644 --- a/docs/quick_tutorial/templating/setup.py +++ b/docs/quick_tutorial/templating/setup.py @@ -3,13 +3,20 @@ from setuptools import setup requires = [ 'pyramid', 'pyramid_chameleon', + 'pyramid_debugtoolbar', 'waitress', ] setup(name='tutorial', install_requires=requires, + extras_require={ + 'test': [ + 'pytest', + 'webtest', + ], + }, entry_points="""\ [paste.app_factory] main = tutorial:main """, -) + ) |
