diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:25:01 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:28:09 -0700 |
| commit | 97afb8f7520cbb24a7662bb92420e8c9fc70bda1 (patch) | |
| tree | 41a92ddaa647d13d61da2ecff900789f3667f636 /docs/quick_tutorial/authorization/setup.py | |
| parent | 57d49fbe4f507871e5baac30c2f393ec21801e17 (diff) | |
| download | pyramid-97afb8f7520cbb24a7662bb92420e8c9fc70bda1.tar.gz pyramid-97afb8f7520cbb24a7662bb92420e8c9fc70bda1.tar.bz2 pyramid-97afb8f7520cbb24a7662bb92420e8c9fc70bda1.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/authorization/setup.py')
| -rw-r--r-- | docs/quick_tutorial/authorization/setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/authorization/setup.py b/docs/quick_tutorial/authorization/setup.py index a5117af5a..05104b158 100644 --- a/docs/quick_tutorial/authorization/setup.py +++ b/docs/quick_tutorial/authorization/setup.py @@ -4,13 +4,20 @@ requires = [ 'bcrypt', '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 """, -) + ) |
