Steve Piercy
2018-10-09 43da8c96b77342b9d2203da9f32dc6b8db04e2a8
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 = [
e68e30 6     'bcrypt',
b1b922 7     'pyramid',
29d12c 8     'pyramid_chameleon',
e68e30 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 )