diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:06:45 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:06:45 -0700 |
| commit | 7d4f80439d35d1fe92cab2c7c1beab653cf9d64a (patch) | |
| tree | b5acfdd6af85f934feabf123e46b2024317b3cc4 /docs/quick_tutorial/json | |
| parent | 18435c3ac41d143c0f42062c095a638f522a30dc (diff) | |
| download | pyramid-7d4f80439d35d1fe92cab2c7c1beab653cf9d64a.tar.gz pyramid-7d4f80439d35d1fe92cab2c7c1beab653cf9d64a.tar.bz2 pyramid-7d4f80439d35d1fe92cab2c7c1beab653cf9d64a.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/json')
| -rw-r--r-- | docs/quick_tutorial/json/setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/json/setup.py b/docs/quick_tutorial/json/setup.py index 744612371..3ad7f004e 100644 --- a/docs/quick_tutorial/json/setup.py +++ b/docs/quick_tutorial/json/setup.py @@ -3,13 +3,20 @@ from setuptools import setup requires = [ '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 """, -) + ) |
