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