From 29f69b107313b3897280d10608f28a6fa5360e37 Mon Sep 17 00:00:00 2001 From: Steve Piercy Date: Mon, 8 Oct 2018 23:45:30 -0700 Subject: Revise `setup.py`s --- docs/quick_tutorial/authorization/setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/quick_tutorial/authorization') diff --git a/docs/quick_tutorial/authorization/setup.py b/docs/quick_tutorial/authorization/setup.py index b38be63a3..5c51563af 100644 --- a/docs/quick_tutorial/authorization/setup.py +++ b/docs/quick_tutorial/authorization/setup.py @@ -6,14 +6,14 @@ requires = [ 'bcrypt', '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', ] @@ -22,7 +22,7 @@ setup( name='tutorial', install_requires=requires, extras_require={ - 'testing': tests_require, + 'dev': dev_requires, }, entry_points={ 'paste.app_factory': [ -- cgit v1.2.3