diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:12:58 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:26:35 -0700 |
| commit | e1c67ed23ae3d571c32ddef56c1cee7039cfd0f5 (patch) | |
| tree | 537dc3b75e696c81daf7df7fad29fa04e79d57f0 /docs/quick_tutorial/forms | |
| parent | db2ddd38c0e7c4c0ad88c076f6b76455bf0fedc9 (diff) | |
| download | pyramid-e1c67ed23ae3d571c32ddef56c1cee7039cfd0f5.tar.gz pyramid-e1c67ed23ae3d571c32ddef56c1cee7039cfd0f5.tar.bz2 pyramid-e1c67ed23ae3d571c32ddef56c1cee7039cfd0f5.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/forms')
| -rw-r--r-- | docs/quick_tutorial/forms/setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/forms/setup.py b/docs/quick_tutorial/forms/setup.py index 968889e74..e911d5bb8 100644 --- a/docs/quick_tutorial/forms/setup.py +++ b/docs/quick_tutorial/forms/setup.py @@ -4,13 +4,20 @@ requires = [ 'deform', '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 """, -) + ) |
