diff options
| author | Steve Piercy <web@stevepiercy.com> | 2015-11-11 21:09:15 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2015-11-11 21:09:15 -0800 |
| commit | 049e670aef9ea5611561546fd5c0e2dd6152b9b7 (patch) | |
| tree | 48062c2b7b7050fe28025d1fd3d62ab5c196b4e6 /docs/quick_tour/sqla_demo/setup.py | |
| parent | d4f2a55d461cbc92f2fc85b3bb6b482ca709732f (diff) | |
| download | pyramid-049e670aef9ea5611561546fd5c0e2dd6152b9b7.tar.gz pyramid-049e670aef9ea5611561546fd5c0e2dd6152b9b7.tar.bz2 pyramid-049e670aef9ea5611561546fd5c0e2dd6152b9b7.zip | |
Revert "update wiki2/src/basiclayout/tutorial"
Diffstat (limited to 'docs/quick_tour/sqla_demo/setup.py')
| -rw-r--r-- | docs/quick_tour/sqla_demo/setup.py | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/quick_tour/sqla_demo/setup.py b/docs/quick_tour/sqla_demo/setup.py index 312a97c06..ac2eed035 100644 --- a/docs/quick_tour/sqla_demo/setup.py +++ b/docs/quick_tour/sqla_demo/setup.py @@ -3,18 +3,15 @@ import os from setuptools import setup, find_packages here = os.path.abspath(os.path.dirname(__file__)) -with open(os.path.join(here, 'README.txt')) as f: - README = f.read() -with open(os.path.join(here, 'CHANGES.txt')) as f: - CHANGES = f.read() +README = open(os.path.join(here, 'README.txt')).read() +CHANGES = open(os.path.join(here, 'CHANGES.txt')).read() requires = [ 'pyramid', - 'pyramid_jinja2', - 'pyramid_debugtoolbar', - 'pyramid_tm', 'SQLAlchemy', 'transaction', + 'pyramid_tm', + 'pyramid_debugtoolbar', 'zope.sqlalchemy', 'waitress', ] |
