summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/package
diff options
context:
space:
mode:
authorsilum <deneys.maartens@gmail.com>2017-11-25 13:20:10 +0200
committerGitHub <noreply@github.com>2017-11-25 13:20:10 +0200
commit3bcc8e7fca65ec0483887b1c960394696d12e397 (patch)
tree75f43de16bc14fe00f36a3e92b540717c74a39ae /docs/quick_tutorial/package
parente2022041ba97ac4360bb588aae0acab4c0d2c77e (diff)
downloadpyramid-3bcc8e7fca65ec0483887b1c960394696d12e397.tar.gz
pyramid-3bcc8e7fca65ec0483887b1c960394696d12e397.tar.bz2
pyramid-3bcc8e7fca65ec0483887b1c960394696d12e397.zip
setup.py: add waitress requirement
Diffstat (limited to 'docs/quick_tutorial/package')
-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
+)