From 29f69b107313b3897280d10608f28a6fa5360e37 Mon Sep 17 00:00:00 2001
From: Steve Piercy <web@stevepiercy.com>
Date: Tue, 09 Oct 2018 08:45:30 +0200
Subject: [PATCH] Revise `setup.py`s

---
 docs/quick_tutorial/jinja2/setup.py |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/docs/quick_tutorial/jinja2/setup.py b/docs/quick_tutorial/jinja2/setup.py
index 6edd2ab..fee95d2 100644
--- a/docs/quick_tutorial/jinja2/setup.py
+++ b/docs/quick_tutorial/jinja2/setup.py
@@ -5,7 +5,6 @@
 requires = [
     'pyramid',
     'pyramid_chameleon',
-    'pyramid_debugtoolbar',
     'pyramid_jinja2',
     'waitress',
 ]
@@ -13,7 +12,8 @@
 # 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 @@
     name='tutorial',
     install_requires=requires,
     extras_require={
-        'testing': tests_require,
+        'dev': dev_requires,
     },
     entry_points={
         'paste.app_factory': [

--
Gitblit v1.9.3