diff options
| -rw-r--r-- | docs/quick_tutorial/authentication/setup.py | 9 | ||||
| -rw-r--r-- | docs/quick_tutorial/authorization/setup.py | 9 |
2 files changed, 16 insertions, 2 deletions
diff --git a/docs/quick_tutorial/authentication/setup.py b/docs/quick_tutorial/authentication/setup.py index a5117af5a..05104b158 100644 --- a/docs/quick_tutorial/authentication/setup.py +++ b/docs/quick_tutorial/authentication/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 """, -) + ) 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 """, -) + ) |
