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',
84aa10 7     'pyramid_chameleon',
SP 8     'pyramid_jinja2',
bcf79f 9     'waitress',
b1b922 10 ]
PE 11
43da8c 12 # List of dependencies installed via `pip install -e ".[dev]"`
307313 13 # by virtue of the Setuptools `extras_require` value in the Python
SP 14 # dictionary below.
29f69b 15 dev_requires = [
SP 16     'pyramid_debugtoolbar',
307313 17     'pytest',
SP 18     'webtest',
19 ]
20
21 setup(
22     name='tutorial',
23     install_requires=requires,
24     extras_require={
29f69b 25         'dev': dev_requires,
307313 26     },
SP 27     entry_points={
28         'paste.app_factory': [
29             'main = tutorial:main'
30         ],
31     },
32 )