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:26:35 -0700 |
| commit | 3bb6f33b0401dd19f66ebd2c1c70d77e13886cf6 (patch) | |
| tree | 1d95668fbe70255468cf2330ae665ecf4e62bca6 /docs/quick_tutorial/json | |
| parent | 84aa10ae8dbc46ccf8201e8c69efce132fcf7bed (diff) | |
| download | pyramid-3bb6f33b0401dd19f66ebd2c1c70d77e13886cf6.tar.gz pyramid-3bb6f33b0401dd19f66ebd2c1c70d77e13886cf6.tar.bz2 pyramid-3bb6f33b0401dd19f66ebd2c1c70d77e13886cf6.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 """, -) + ) |
