diff options
| author | Chris McDonough <chrism@plope.com> | 2012-01-02 20:42:56 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2012-01-02 20:42:56 -0500 |
| commit | 22c2200bf69ca49a0bfbe0e0a0241e87b9143737 (patch) | |
| tree | 349dc75dbe55ba60077583e8dddf9f60f3250c0f | |
| parent | 030d10697cc52a5c26d19818140616a485f63428 (diff) | |
| download | pyramid-22c2200bf69ca49a0bfbe0e0a0241e87b9143737.tar.gz pyramid-22c2200bf69ca49a0bfbe0e0a0241e87b9143737.tar.bz2 pyramid-22c2200bf69ca49a0bfbe0e0a0241e87b9143737.zip | |
have sample scaffold depend on waitress
| -rw-r--r-- | docs/narr/MyProject/setup.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/docs/narr/MyProject/setup.py b/docs/narr/MyProject/setup.py index 74879f65d..b119a954b 100644 --- a/docs/narr/MyProject/setup.py +++ b/docs/narr/MyProject/setup.py @@ -6,7 +6,11 @@ here = os.path.abspath(os.path.dirname(__file__)) README = open(os.path.join(here, 'README.txt')).read() CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() -requires = ['pyramid', 'pyramid_debugtoolbar'] +requires = [ + 'pyramid', + 'pyramid_debugtoolbar', + 'waitress', + ] setup(name='MyProject', version='0.0', |
