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