Steve Piercy
2018-05-19 53c785fe88005e6e745f94f604e225086cb8f9b2
commit | author | age
b1b922 1 from setuptools import setup
PE 2
3 requires = [
4     'pyramid',
d48884 5     'pyramid_chameleon',
456720 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       """,
d48884 15 )