diff options
| author | Patricio Paez <pp@pp.com.mx> | 2012-11-19 22:35:36 -0600 |
|---|---|---|
| committer | Patricio Paez <pp@pp.com.mx> | 2012-11-19 22:42:39 -0600 |
| commit | 6234f4a25a59658ccc66fe3d2b1c248ba96f5344 (patch) | |
| tree | 55e28cf81ba3d04ffa95104cbdfac5bad6bfd545 /docs/tutorials/wiki/src/views/setup.py | |
| parent | c344e532e27ce078643ec3246002d2703ef85416 (diff) | |
| download | pyramid-6234f4a25a59658ccc66fe3d2b1c248ba96f5344.tar.gz pyramid-6234f4a25a59658ccc66fe3d2b1c248ba96f5344.tar.bz2 pyramid-6234f4a25a59658ccc66fe3d2b1c248ba96f5344.zip | |
Sync some ZODB wiki tutorial files with the scaffold
- Files that are not referred to in a literalinclude
in the tutorial docs
- setup.py and development.ini appear in a literalinclude
but no lines are emphasized and there is no impact.
Diffstat (limited to 'docs/tutorials/wiki/src/views/setup.py')
| -rw-r--r-- | docs/tutorials/wiki/src/views/setup.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki/src/views/setup.py b/docs/tutorials/wiki/src/views/setup.py index a6be89b2e..ac8cdf2d5 100644 --- a/docs/tutorials/wiki/src/views/setup.py +++ b/docs/tutorials/wiki/src/views/setup.py @@ -21,9 +21,8 @@ setup(name='tutorial', description='tutorial', long_description=README + '\n\n' + CHANGES, classifiers=[ - "Intended Audience :: Developers", - "Framework :: Pylons", "Programming Language :: Python", + "Framework :: Pyramid", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", ], @@ -34,11 +33,12 @@ setup(name='tutorial', packages=find_packages(), include_package_data=True, zip_safe=False, - install_requires=requires, - tests_require=requires, + install_requires = requires, + tests_require= requires, test_suite="tutorial", entry_points = """\ [paste.app_factory] main = tutorial:main """, ) + |
