diff options
| author | Steve Piercy <web@stevepiercy.com> | 2015-11-11 21:09:39 -0800 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2015-11-11 21:09:39 -0800 |
| commit | 47162533af84bb8d26db6d1c9ba1e63d70e9070f (patch) | |
| tree | 48062c2b7b7050fe28025d1fd3d62ab5c196b4e6 /docs/quick_tour/sqla_demo/setup.py | |
| parent | d4f2a55d461cbc92f2fc85b3bb6b482ca709732f (diff) | |
| parent | 049e670aef9ea5611561546fd5c0e2dd6152b9b7 (diff) | |
| download | pyramid-47162533af84bb8d26db6d1c9ba1e63d70e9070f.tar.gz pyramid-47162533af84bb8d26db6d1c9ba1e63d70e9070f.tar.bz2 pyramid-47162533af84bb8d26db6d1c9ba1e63d70e9070f.zip | |
Merge pull request #2110 from Pylons/revert-2108-feature/alchemy-scaffold-update
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', ] |
