diff options
Diffstat (limited to 'docs/quick_tutorial/templating')
| -rw-r--r-- | docs/quick_tutorial/templating/setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/quick_tutorial/templating/setup.py b/docs/quick_tutorial/templating/setup.py index a84fe79ee..0c980b613 100644 --- a/docs/quick_tutorial/templating/setup.py +++ b/docs/quick_tutorial/templating/setup.py @@ -5,14 +5,14 @@ from setuptools import setup requires = [ 'pyramid', 'pyramid_chameleon', - 'pyramid_debugtoolbar', 'waitress', ] # List of dependencies installed via `pip install -e ".[testing]"` # by virtue of the Setuptools `extras_require` value in the Python # dictionary below. -tests_require = [ +dev_requires = [ + 'pyramid_debugtoolbar', 'pytest', 'webtest', ] @@ -21,7 +21,7 @@ setup( name='tutorial', install_requires=requires, extras_require={ - 'testing': tests_require, + 'dev': dev_requires, }, entry_points={ 'paste.app_factory': [ |
