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