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