summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-10-07 03:49:25 -0700
committerSteve Piercy <web@stevepiercy.com>2018-10-07 04:26:35 -0700
commit03966fb9850a46a51004d38499e158f3f2bbed2d (patch)
tree7d2c250437ea29a08790eb87233617e02b61a170 /docs
parent8998f6fbaf526c0c0fe4300ec78815c7badfa826 (diff)
downloadpyramid-03966fb9850a46a51004d38499e158f3f2bbed2d.tar.gz
pyramid-03966fb9850a46a51004d38499e158f3f2bbed2d.tar.bz2
pyramid-03966fb9850a46a51004d38499e158f3f2bbed2d.zip
Carry forward previous setup.py changes.
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tutorial/views/setup.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/views/setup.py b/docs/quick_tutorial/views/setup.py
index a93cf6a73..c0d3dee8f 100644
--- a/docs/quick_tutorial/views/setup.py
+++ b/docs/quick_tutorial/views/setup.py
@@ -2,13 +2,20 @@ from setuptools import setup
requires = [
'pyramid',
+ 'pyramid_debugtoolbar',
'waitress',
]
setup(name='tutorial',
install_requires=requires,
+ extras_require={
+ 'test': [
+ 'pytest',
+ 'webtest',
+ ],
+ },
entry_points="""\
[paste.app_factory]
main = tutorial:main
""",
-) \ No newline at end of file
+ )