summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-10-07 04:25:01 -0700
committerSteve Piercy <web@stevepiercy.com>2018-10-07 04:28:09 -0700
commit97afb8f7520cbb24a7662bb92420e8c9fc70bda1 (patch)
tree41a92ddaa647d13d61da2ecff900789f3667f636 /docs/quick_tutorial
parent57d49fbe4f507871e5baac30c2f393ec21801e17 (diff)
downloadpyramid-97afb8f7520cbb24a7662bb92420e8c9fc70bda1.tar.gz
pyramid-97afb8f7520cbb24a7662bb92420e8c9fc70bda1.tar.bz2
pyramid-97afb8f7520cbb24a7662bb92420e8c9fc70bda1.zip
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial')
-rw-r--r--docs/quick_tutorial/authentication/setup.py9
-rw-r--r--docs/quick_tutorial/authorization/setup.py9
2 files changed, 16 insertions, 2 deletions
diff --git a/docs/quick_tutorial/authentication/setup.py b/docs/quick_tutorial/authentication/setup.py
index a5117af5a..05104b158 100644
--- a/docs/quick_tutorial/authentication/setup.py
+++ b/docs/quick_tutorial/authentication/setup.py
@@ -4,13 +4,20 @@ requires = [
'bcrypt',
'pyramid',
'pyramid_chameleon',
+ 'pyramid_debugtoolbar',
'waitress',
]
setup(name='tutorial',
install_requires=requires,
+ extras_require={
+ 'test': [
+ 'pytest',
+ 'webtest',
+ ],
+ },
entry_points="""\
[paste.app_factory]
main = tutorial:main
""",
-)
+ )
diff --git a/docs/quick_tutorial/authorization/setup.py b/docs/quick_tutorial/authorization/setup.py
index a5117af5a..05104b158 100644
--- a/docs/quick_tutorial/authorization/setup.py
+++ b/docs/quick_tutorial/authorization/setup.py
@@ -4,13 +4,20 @@ requires = [
'bcrypt',
'pyramid',
'pyramid_chameleon',
+ 'pyramid_debugtoolbar',
'waitress',
]
setup(name='tutorial',
install_requires=requires,
+ extras_require={
+ 'test': [
+ 'pytest',
+ 'webtest',
+ ],
+ },
entry_points="""\
[paste.app_factory]
main = tutorial:main
""",
-)
+ )