Steve Piercy
2017-10-22 5ba44d4fd4c3bcec0ab550bbb7bfe25a9b296118
commit | author | age
b1b922 1 from setuptools import setup
PE 2
3 requires = [
4     'pyramid',
456720 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 )