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/debugtoolbar/setup.py |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/docs/quick_tutorial/debugtoolbar/setup.py b/docs/quick_tutorial/debugtoolbar/setup.py
index 5fee31f..6120d7a 100644
--- a/docs/quick_tutorial/debugtoolbar/setup.py
+++ b/docs/quick_tutorial/debugtoolbar/setup.py
@@ -4,13 +4,19 @@
 # by virtue of the Setuptools `install_requires` value below.
 requires = [
     'pyramid',
-    'pyramid_debugtoolbar',
     'waitress',
+]
+
+dev_requires = [
+    'pyramid_debugtoolbar',
 ]
 
 setup(
     name='tutorial',
     install_requires=requires,
+    extras_require={
+        'dev': dev_requires,
+    },
     entry_points={
         'paste.app_factory': [
             'main = tutorial:main'

--
Gitblit v1.9.3