Steve Piercy
2017-10-22 95afe60a38fce0e2fa681e0114c43ba87988d648
commit | author | age
a2b158 1 from setuptools import setup
PE 2
3 requires = [
4     'pyramid',
95afe6 5     'waitress',
a2b158 6     'pyramid_chameleon',
PE 7     'deform'
8 ]
9
10 setup(name='tutorial',
11       install_requires=requires,
12       entry_points="""\
13       [paste.app_factory]
14       main = tutorial:main
15       """,
16 )