summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/views
diff options
context:
space:
mode:
Diffstat (limited to 'docs/quick_tutorial/views')
-rw-r--r--docs/quick_tutorial/views/setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/quick_tutorial/views/setup.py b/docs/quick_tutorial/views/setup.py
index 68a522ad7..278210299 100644
--- a/docs/quick_tutorial/views/setup.py
+++ b/docs/quick_tutorial/views/setup.py
@@ -4,14 +4,14 @@ from setuptools import setup
# by virtue of the Setuptools `install_requires` value below.
requires = [
'pyramid',
- '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',
]
@@ -20,7 +20,7 @@ setup(
name='tutorial',
install_requires=requires,
extras_require={
- 'testing': tests_require,
+ 'dev': dev_requires,
},
entry_points={
'paste.app_factory': [