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