diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:12:58 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:12:58 -0700 |
| commit | 4859a3a1831dd3e1fd7e4e0a857c2d500ce63ac8 (patch) | |
| tree | cac3b25f221bf86592750c3fd03ed1b61ef71faa /docs/quick_tutorial | |
| parent | 27877b587f0967a2ca82fcc848608d591f9095bf (diff) | |
| download | pyramid-4859a3a1831dd3e1fd7e4e0a857c2d500ce63ac8.tar.gz pyramid-4859a3a1831dd3e1fd7e4e0a857c2d500ce63ac8.tar.bz2 pyramid-4859a3a1831dd3e1fd7e4e0a857c2d500ce63ac8.zip | |
Carry forward previous setup.py changes.
Diffstat (limited to 'docs/quick_tutorial')
| -rw-r--r-- | docs/quick_tutorial/forms/setup.py | 9 | ||||
| -rw-r--r-- | docs/quick_tutorial/logging/setup.py | 9 | ||||
| -rw-r--r-- | docs/quick_tutorial/sessions/setup.py | 9 |
3 files changed, 24 insertions, 3 deletions
diff --git a/docs/quick_tutorial/forms/setup.py b/docs/quick_tutorial/forms/setup.py index 968889e74..e911d5bb8 100644 --- a/docs/quick_tutorial/forms/setup.py +++ b/docs/quick_tutorial/forms/setup.py @@ -4,13 +4,20 @@ requires = [ 'deform', 'pyramid', 'pyramid_chameleon', + 'pyramid_debugtoolbar', 'waitress', ] setup(name='tutorial', install_requires=requires, + extras_require={ + 'test': [ + 'pytest', + 'webtest', + ], + }, entry_points="""\ [paste.app_factory] main = tutorial:main """, -) + ) diff --git a/docs/quick_tutorial/logging/setup.py b/docs/quick_tutorial/logging/setup.py index 744612371..3ad7f004e 100644 --- a/docs/quick_tutorial/logging/setup.py +++ b/docs/quick_tutorial/logging/setup.py @@ -3,13 +3,20 @@ from setuptools import setup requires = [ 'pyramid', 'pyramid_chameleon', + 'pyramid_debugtoolbar', 'waitress', ] setup(name='tutorial', install_requires=requires, + extras_require={ + 'test': [ + 'pytest', + 'webtest', + ], + }, entry_points="""\ [paste.app_factory] main = tutorial:main """, -) + ) diff --git a/docs/quick_tutorial/sessions/setup.py b/docs/quick_tutorial/sessions/setup.py index 744612371..3ad7f004e 100644 --- a/docs/quick_tutorial/sessions/setup.py +++ b/docs/quick_tutorial/sessions/setup.py @@ -3,13 +3,20 @@ from setuptools import setup requires = [ 'pyramid', 'pyramid_chameleon', + 'pyramid_debugtoolbar', 'waitress', ] setup(name='tutorial', install_requires=requires, + extras_require={ + 'test': [ + 'pytest', + 'webtest', + ], + }, entry_points="""\ [paste.app_factory] main = tutorial:main """, -) + ) |
