summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/debugtoolbar
diff options
context:
space:
mode:
Diffstat (limited to 'docs/quick_tutorial/debugtoolbar')
-rw-r--r--docs/quick_tutorial/debugtoolbar/setup.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/quick_tutorial/debugtoolbar/setup.py b/docs/quick_tutorial/debugtoolbar/setup.py
index 6120d7a2f..53bc0f5c7 100644
--- a/docs/quick_tutorial/debugtoolbar/setup.py
+++ b/docs/quick_tutorial/debugtoolbar/setup.py
@@ -1,12 +1,15 @@
from setuptools import setup
-# List of dependencies installed via `pip install -e .`.
+# List of dependencies installed via `pip install -e .`
# by virtue of the Setuptools `install_requires` value below.
requires = [
'pyramid',
'waitress',
]
+# List of dependencies installed via `pip install -e ".[dev]"`
+# by virtue of the Setuptools `extras_require` value in the Python
+# dictionary below.
dev_requires = [
'pyramid_debugtoolbar',
]