summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKuzma <k.leshakov@yandex.ru>2018-09-07 20:51:56 +0300
committerGitHub <noreply@github.com>2018-09-07 20:51:56 +0300
commit8367b0b94c470c132ec0c4ba4669733b6ae4f5b7 (patch)
treeb45571f9758120a7f9e37645bdadd6cbdff5738f /docs
parentb8c17ee19fce1aa0e1c5331ebbcf69853d1e3c54 (diff)
downloadpyramid-8367b0b94c470c132ec0c4ba4669733b6ae4f5b7.tar.gz
pyramid-8367b0b94c470c132ec0c4ba4669733b6ae4f5b7.tar.bz2
pyramid-8367b0b94c470c132ec0c4ba4669733b6ae4f5b7.zip
Add missing waitress dependency
Waitress is needed in the code used in this tutorial step: https://docs.pylonsproject.org/projects/pyramid/en/latest/quick_tutorial/package.html
Diffstat (limited to 'docs')
-rw-r--r--docs/quick_tutorial/package/setup.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/docs/quick_tutorial/package/setup.py b/docs/quick_tutorial/package/setup.py
index bcfcfa684..77fedee2d 100644
--- a/docs/quick_tutorial/package/setup.py
+++ b/docs/quick_tutorial/package/setup.py
@@ -2,8 +2,9 @@ from setuptools import setup
requires = [
'pyramid',
+ 'waitress',
]
setup(name='tutorial',
install_requires=requires,
-) \ No newline at end of file
+)