diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:48:18 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:26:35 -0700 |
| commit | 8998f6fbaf526c0c0fe4300ec78815c7badfa826 (patch) | |
| tree | bb7c1630855c047ae89c5855ff5c9b8e8781e851 /docs/quick_tutorial/functional_testing/setup.py | |
| parent | 34a7a85436e1545356345affc21dd1a564635469 (diff) | |
| download | pyramid-8998f6fbaf526c0c0fe4300ec78815c7badfa826.tar.gz pyramid-8998f6fbaf526c0c0fe4300ec78815c7badfa826.tar.bz2 pyramid-8998f6fbaf526c0c0fe4300ec78815c7badfa826.zip | |
Make webtest an extra dependency in setup.py.
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/functional_testing/setup.py')
| -rw-r--r-- | docs/quick_tutorial/functional_testing/setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/functional_testing/setup.py b/docs/quick_tutorial/functional_testing/setup.py index a93cf6a73..c0d3dee8f 100644 --- a/docs/quick_tutorial/functional_testing/setup.py +++ b/docs/quick_tutorial/functional_testing/setup.py @@ -2,13 +2,20 @@ from setuptools import setup requires = [ 'pyramid', + 'pyramid_debugtoolbar', 'waitress', ] setup(name='tutorial', install_requires=requires, + extras_require={ + 'test': [ + 'pytest', + 'webtest', + ], + }, entry_points="""\ [paste.app_factory] main = tutorial:main """, -)
\ No newline at end of file + ) |
