Steve Piercy
2018-10-09 05915720f97df868e0b7dcff6e9b8eed964b8a90
commit | author | age
a2b158 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.
a2b158 5 requires = [
e68e30 6     'deform',
a2b158 7     'pyramid',
PE 8     'pyramid_chameleon',
e68e30 9     'waitress',
a2b158 10 ]
PE 11
307313 12 setup(
SP 13     name='tutorial',
14     install_requires=requires,
15     entry_points={
16         'paste.app_factory': [
17             'main = tutorial:main'
18         ],
19     },
e68e30 20 )