diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:49:25 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:49:25 -0700 |
| commit | 14718eb016adff8fbae06efb434ec4e7f21537f3 (patch) | |
| tree | 43c0d305d61e954808fc434b58e1304df007f3ae /docs/quick_tutorial/views | |
| parent | ab0a209457252e335d70bf29f7b58a25b580dd98 (diff) | |
| download | pyramid-14718eb016adff8fbae06efb434ec4e7f21537f3.tar.gz pyramid-14718eb016adff8fbae06efb434ec4e7f21537f3.tar.bz2 pyramid-14718eb016adff8fbae06efb434ec4e7f21537f3.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/views')
| -rw-r--r-- | docs/quick_tutorial/views/setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/views/setup.py b/docs/quick_tutorial/views/setup.py index a93cf6a73..c0d3dee8f 100644 --- a/docs/quick_tutorial/views/setup.py +++ b/docs/quick_tutorial/views/setup.py @@ -2,13 +2,20 @@ from setuptools import setup requires = [ 'pyramid', + 'pyramid_debugtoolbar', '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 + ) |
