summaryrefslogtreecommitdiff
path: root/docs/quick_tour/sqla_demo/setup.py
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2015-11-10 03:05:33 -0800
committerSteve Piercy <web@stevepiercy.com>2015-11-10 03:05:33 -0800
commitc4c37a63c48bb86712da61984fc56258b9a64ff1 (patch)
treeb6253bee7150712f882db039b9a7dcc04e4605c5 /docs/quick_tour/sqla_demo/setup.py
parentbb38205e27165f1af19600a64eef702372cbb7a7 (diff)
downloadpyramid-c4c37a63c48bb86712da61984fc56258b9a64ff1.tar.gz
pyramid-c4c37a63c48bb86712da61984fc56258b9a64ff1.tar.bz2
pyramid-c4c37a63c48bb86712da61984fc56258b9a64ff1.zip
- update files at project root
Diffstat (limited to 'docs/quick_tour/sqla_demo/setup.py')
-rw-r--r--docs/quick_tour/sqla_demo/setup.py11
1 files changed, 7 insertions, 4 deletions
diff --git a/docs/quick_tour/sqla_demo/setup.py b/docs/quick_tour/sqla_demo/setup.py
index ac2eed035..312a97c06 100644
--- a/docs/quick_tour/sqla_demo/setup.py
+++ b/docs/quick_tour/sqla_demo/setup.py
@@ -3,15 +3,18 @@ import os
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()
+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()
requires = [
'pyramid',
+ 'pyramid_jinja2',
+ 'pyramid_debugtoolbar',
+ 'pyramid_tm',
'SQLAlchemy',
'transaction',
- 'pyramid_tm',
- 'pyramid_debugtoolbar',
'zope.sqlalchemy',
'waitress',
]