diff options
| author | silum <deneys.maartens@gmail.com> | 2017-11-25 13:20:10 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-11-25 13:20:10 +0200 |
| commit | 3bcc8e7fca65ec0483887b1c960394696d12e397 (patch) | |
| tree | 75f43de16bc14fe00f36a3e92b540717c74a39ae /docs/quick_tutorial | |
| parent | e2022041ba97ac4360bb588aae0acab4c0d2c77e (diff) | |
| download | pyramid-3bcc8e7fca65ec0483887b1c960394696d12e397.tar.gz pyramid-3bcc8e7fca65ec0483887b1c960394696d12e397.tar.bz2 pyramid-3bcc8e7fca65ec0483887b1c960394696d12e397.zip | |
setup.py: add waitress requirement
Diffstat (limited to 'docs/quick_tutorial')
| -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 +) |
