summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/static_assets
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-10-07 04:06:45 -0700
committerSteve Piercy <web@stevepiercy.com>2018-10-07 04:26:35 -0700
commit3bb6f33b0401dd19f66ebd2c1c70d77e13886cf6 (patch)
tree1d95668fbe70255468cf2330ae665ecf4e62bca6 /docs/quick_tutorial/static_assets
parent84aa10ae8dbc46ccf8201e8c69efce132fcf7bed (diff)
downloadpyramid-3bb6f33b0401dd19f66ebd2c1c70d77e13886cf6.tar.gz
pyramid-3bb6f33b0401dd19f66ebd2c1c70d77e13886cf6.tar.bz2
pyramid-3bb6f33b0401dd19f66ebd2c1c70d77e13886cf6.zip
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/static_assets')
-rw-r--r--docs/quick_tutorial/static_assets/setup.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/static_assets/setup.py b/docs/quick_tutorial/static_assets/setup.py
index 744612371..3ad7f004e 100644
--- a/docs/quick_tutorial/static_assets/setup.py
+++ b/docs/quick_tutorial/static_assets/setup.py
@@ -3,13 +3,20 @@ from setuptools import setup
requires = [
'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
""",
-)
+ )