diff options
| author | Chris McDonough <chrism@plope.com> | 2011-07-01 02:08:03 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-07-01 02:08:03 -0400 |
| commit | 05a1b4a37df7e855747f66174a472b0de3ce1c9e (patch) | |
| tree | d9ca781390b0ebffd33a7bd130444e3ff41a4b84 /docs/tutorials/wiki2/src/tests/setup.py | |
| parent | 371a670b02052dcbf42629f228373cae805b0dd3 (diff) | |
| download | pyramid-05a1b4a37df7e855747f66174a472b0de3ce1c9e.tar.gz pyramid-05a1b4a37df7e855747f66174a472b0de3ce1c9e.tar.bz2 pyramid-05a1b4a37df7e855747f66174a472b0de3ce1c9e.zip | |
- The Wiki2 tutorial "Tests" chapter had two bugs: it did not tell the user
to depend on WebTest, and 2 tests failed as the result of changes to
Pyramid itself. These issues have been fixed.
Diffstat (limited to 'docs/tutorials/wiki2/src/tests/setup.py')
| -rw-r--r-- | docs/tutorials/wiki2/src/tests/setup.py | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/docs/tutorials/wiki2/src/tests/setup.py b/docs/tutorials/wiki2/src/tests/setup.py new file mode 100644 index 000000000..7828f185d --- /dev/null +++ b/docs/tutorials/wiki2/src/tests/setup.py @@ -0,0 +1,49 @@ +import os +import sys + +from setuptools import setup, find_packages + +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', + 'SQLAlchemy', + 'transaction', + 'repoze.tm2>=1.0b1', + 'zope.sqlalchemy', + 'WebError', + 'docutils', + 'WebTest', # add this + ] + +if sys.version_info[:3] < (2,5,0): + requires.append('pysqlite') + +setup(name='tutorial', + version='0.0', + description='tutorial', + long_description=README + '\n\n' + CHANGES, + classifiers=[ + "Programming Language :: Python", + "Framework :: Pylons", + "Topic :: Internet :: WWW/HTTP", + "Topic :: Internet :: WWW/HTTP :: WSGI :: Application", + ], + author='', + author_email='', + url='', + keywords='web wsgi bfg pylons pyramid', + packages=find_packages(), + include_package_data=True, + zip_safe=False, + test_suite='tutorial', + install_requires = requires, + entry_points = """\ + [paste.app_factory] + main = tutorial:main + """, + paster_plugins=['pyramid'], + ) + |
