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:25:01 -0700 |
| commit | a842f3ac4eda7d94537c2737de19f9d0ea269008 (patch) | |
| tree | 74bbc6f4559eeb53a54085f9e8c18811897761b9 /docs/quick_tutorial | |
| parent | a5860d7540a811d0a7f8a7191d038b3452c2eb1a (diff) | |
| download | pyramid-a842f3ac4eda7d94537c2737de19f9d0ea269008.tar.gz pyramid-a842f3ac4eda7d94537c2737de19f9d0ea269008.tar.bz2 pyramid-a842f3ac4eda7d94537c2737de19f9d0ea269008.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial')
| -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 """, -) + ) |
