Steve Piercy
2018-05-19 92396fec03f546a708f79ef39838709a9ad44ea5
commit | author | age
b1b922 1 from setuptools import setup
PE 2
3 requires = [
4     'pyramid',
111aef 5     'pyramid_chameleon',
263ba4 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       """,
111aef 15 )