diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:50:51 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:50:51 -0700 |
| commit | 5616e05df638be959f6376cb5b6b0cac918089ea (patch) | |
| tree | e8328280b1615abb9962b21b61ecaaea7e847cb9 /docs/quick_tutorial/templating/setup.py | |
| parent | 14718eb016adff8fbae06efb434ec4e7f21537f3 (diff) | |
| download | pyramid-5616e05df638be959f6376cb5b6b0cac918089ea.tar.gz pyramid-5616e05df638be959f6376cb5b6b0cac918089ea.tar.bz2 pyramid-5616e05df638be959f6376cb5b6b0cac918089ea.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/templating/setup.py')
| -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 """, -) + ) |
