Steve Piercy
2018-10-09 05915720f97df868e0b7dcff6e9b8eed964b8a90
commit | author | age
b1b922 1 from setuptools import setup
PE 2
43da8c 3 # List of dependencies installed via `pip install -e .`
307313 4 # by virtue of the Setuptools `install_requires` value below.
b1b922 5 requires = [
PE 6     'pyramid',
bcf79f 7     'waitress',
b1b922 8 ]
PE 9
307313 10 setup(
SP 11     name='tutorial',
12     install_requires=requires,
13     entry_points={
14         'paste.app_factory': [
15             'main = tutorial:main'
16         ],
17     },
18 )