diff options
| author | Chris McDonough <chrism@plope.com> | 2010-11-11 13:40:44 -0500 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2010-11-11 13:40:44 -0500 |
| commit | 40eb89e594ec6aefaeffb3db67493bdf0f9b6224 (patch) | |
| tree | b6e4049d428c3e148f8197baee3570c6d3f14245 /docs/tutorials/wiki2/src/views/setup.py | |
| parent | 560fe3ae45077020c54edf52bd33dbc8f2973e69 (diff) | |
| download | pyramid-40eb89e594ec6aefaeffb3db67493bdf0f9b6224.tar.gz pyramid-40eb89e594ec6aefaeffb3db67493bdf0f9b6224.tar.bz2 pyramid-40eb89e594ec6aefaeffb3db67493bdf0f9b6224.zip | |
- SQLAlchemy+urldispach wiki (``wiki2``) tutorial updated due to changes to
``pyramid_routesalchemy`` paster template.
Diffstat (limited to 'docs/tutorials/wiki2/src/views/setup.py')
| -rw-r--r-- | docs/tutorials/wiki2/src/views/setup.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/tutorials/wiki2/src/views/setup.py b/docs/tutorials/wiki2/src/views/setup.py index 5dabb69a2..58f464f8c 100644 --- a/docs/tutorials/wiki2/src/views/setup.py +++ b/docs/tutorials/wiki2/src/views/setup.py @@ -13,7 +13,8 @@ requires = [ 'transaction', 'repoze.tm2', 'zope.sqlalchemy', - 'docutils' + 'WebError', + 'docutils', ] if sys.version_info[:3] < (2,5,0): @@ -32,7 +33,7 @@ setup(name='tutorial', author='', author_email='', url='', - keywords='web wsgi pylons pyramid bfg', + keywords='web wsgi bfg pylons pyramid', packages=find_packages(), include_package_data=True, zip_safe=False, @@ -40,7 +41,8 @@ setup(name='tutorial', install_requires = requires, entry_points = """\ [paste.app_factory] - app = tutorial:app - """ + main = tutorial:main + """, + paster_plugins=['pyramid'], ) |
