diff options
| author | Chris McDonough <chrism@plope.com> | 2010-12-15 19:08:23 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-12-15 19:08:23 -0500 |
| commit | 55e60cf78d6af4fcf99e546f779c31a18ea0bfac (patch) | |
| tree | 0cbfca4d41682f08569ece40959b2bbdc646e522 /docs/tutorials/wiki/src/basiclayout/setup.py | |
| parent | 86a304c7742862e9bf0185c92f5d11ee33ce01c7 (diff) | |
| download | pyramid-55e60cf78d6af4fcf99e546f779c31a18ea0bfac.tar.gz pyramid-55e60cf78d6af4fcf99e546f779c31a18ea0bfac.tar.bz2 pyramid-55e60cf78d6af4fcf99e546f779c31a18ea0bfac.zip | |
- If you followed it to-the-letter, the ZODB+Traversal Wiki tutorial would
instruct you to run a test which would fail because the view callable
generated by the ``pyramid_zodb`` tutorial used a one-arg view callable,
but the test in the sample code used a two-arg call.
- Updated ZODB+Traversal tutorial setup.py of all steps to match what's
generated by ``pyramid_zodb``.
Diffstat (limited to 'docs/tutorials/wiki/src/basiclayout/setup.py')
| -rw-r--r-- | docs/tutorials/wiki/src/basiclayout/setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki/src/basiclayout/setup.py b/docs/tutorials/wiki/src/basiclayout/setup.py index 70543918c..a0de6ec81 100644 --- a/docs/tutorials/wiki/src/basiclayout/setup.py +++ b/docs/tutorials/wiki/src/basiclayout/setup.py @@ -8,10 +8,9 @@ CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', - 'docutils', - 'ZODB3', 'repoze.zodbconn', 'repoze.tm', + 'ZODB3', 'WebError', ] @@ -29,7 +28,7 @@ setup(name='tutorial', author='', author_email='', url='', - keywords='web pyramid bfg', + keywords='web pylons pyramid', packages=find_packages(), include_package_data=True, zip_safe=False, @@ -39,5 +38,6 @@ setup(name='tutorial', entry_points = """\ [paste.app_factory] main = tutorial:main - """ + """, + paster_plugins=['pyramid'], ) |
