diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:59:53 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:59:53 -0700 |
| commit | ef01615bf6f8fbc1f78a7e803b4fe59dddcfc59f (patch) | |
| tree | 16dc1698afca890b42718a550d9a6fa264c3cece /docs/quick_tutorial/routing/setup.py | |
| parent | 5616e05df638be959f6376cb5b6b0cac918089ea (diff) | |
| download | pyramid-ef01615bf6f8fbc1f78a7e803b4fe59dddcfc59f.tar.gz pyramid-ef01615bf6f8fbc1f78a7e803b4fe59dddcfc59f.tar.bz2 pyramid-ef01615bf6f8fbc1f78a7e803b4fe59dddcfc59f.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/routing/setup.py')
| -rw-r--r-- | docs/quick_tutorial/routing/setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/routing/setup.py b/docs/quick_tutorial/routing/setup.py index 744612371..3ad7f004e 100644 --- a/docs/quick_tutorial/routing/setup.py +++ b/docs/quick_tutorial/routing/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 """, -) + ) |
