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',
e68e30 7     'pyramid_chameleon',
bcf79f 8     'waitress',
b1b922 9 ]
PE 10
307313 11 # List of dependencies installed via `pip install -e ".[testing]"`
SP 12 # by virtue of the Setuptools `extras_require` value in the Python
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 )