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