diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:41:55 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 03:41:55 -0700 |
| commit | 9b236a02e3f8e4e660f8a4a2f6e61675bcf5e396 (patch) | |
| tree | ce385d96412bf9b76bc7b3e9486b0f57fc3cda37 /docs/quick_tutorial/unit_testing/setup.py | |
| parent | e76a722e8e36f0488f4bae45acb2293016f6d26c (diff) | |
| download | pyramid-9b236a02e3f8e4e660f8a4a2f6e61675bcf5e396.tar.gz pyramid-9b236a02e3f8e4e660f8a4a2f6e61675bcf5e396.tar.bz2 pyramid-9b236a02e3f8e4e660f8a4a2f6e61675bcf5e396.zip | |
Make pytest an extra dependency in setup.py.
Add paragraph on Setuptools extras.
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial/unit_testing/setup.py')
| -rw-r--r-- | docs/quick_tutorial/unit_testing/setup.py | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/quick_tutorial/unit_testing/setup.py b/docs/quick_tutorial/unit_testing/setup.py index a93cf6a73..617c806aa 100644 --- a/docs/quick_tutorial/unit_testing/setup.py +++ b/docs/quick_tutorial/unit_testing/setup.py @@ -2,13 +2,19 @@ from setuptools import setup requires = [ 'pyramid', + 'pyramid_debugtoolbar', 'waitress', ] setup(name='tutorial', install_requires=requires, + extras_require={ + 'test': [ + 'pytest', + ], + }, entry_points="""\ [paste.app_factory] main = tutorial:main """, -)
\ No newline at end of file + ) |
