Steve Piercy
2018-10-09 29f69b107313b3897280d10608f28a6fa5360e37
commit | author | age
b1b922 1 from setuptools import setup
PE 2
307313 3 # List of dependencies installed via `pip install -e .`.
SP 4 # by virtue of the Setuptools `install_requires` value below.
b1b922 5 requires = [
PE 6     'pyramid',
cfc8fb 7     'waitress',
29f69b 8 ]
SP 9
10 dev_requires = [
11     'pyramid_debugtoolbar',
b1b922 12 ]
PE 13
307313 14 setup(
SP 15     name='tutorial',
16     install_requires=requires,
29f69b 17     extras_require={
SP 18         'dev': dev_requires,
19     },
307313 20     entry_points={
SP 21         'paste.app_factory': [
22             'main = tutorial:main'
23         ],
24     },
25 )