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