diff options
| author | Kuzma <k.leshakov@yandex.ru> | 2018-09-07 20:51:56 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-09-07 20:51:56 +0300 |
| commit | 8367b0b94c470c132ec0c4ba4669733b6ae4f5b7 (patch) | |
| tree | b45571f9758120a7f9e37645bdadd6cbdff5738f /docs/quick_tutorial/package | |
| parent | b8c17ee19fce1aa0e1c5331ebbcf69853d1e3c54 (diff) | |
| download | pyramid-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/quick_tutorial/package')
| -rw-r--r-- | docs/quick_tutorial/package/setup.py | 3 |
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 +) |
