From 55e60cf78d6af4fcf99e546f779c31a18ea0bfac Mon Sep 17 00:00:00 2001 From: Chris McDonough Date: Wed, 15 Dec 2010 19:08:23 -0500 Subject: - 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``. --- docs/tutorials/wiki/src/basiclayout/setup.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/tutorials/wiki/src/basiclayout/setup.py') 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'], ) -- cgit v1.2.3