diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-08 23:45:30 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-08 23:45:30 -0700 |
| commit | 29f69b107313b3897280d10608f28a6fa5360e37 (patch) | |
| tree | b7201fc8cb680567934e76fc212dd73bfbdc029c /docs/quick_tutorial/databases/setup.py | |
| parent | e73977d032b75b165084afba1595c1881b815a28 (diff) | |
| download | pyramid-29f69b107313b3897280d10608f28a6fa5360e37.tar.gz pyramid-29f69b107313b3897280d10608f28a6fa5360e37.tar.bz2 pyramid-29f69b107313b3897280d10608f28a6fa5360e37.zip | |
Revise `setup.py`s
Diffstat (limited to 'docs/quick_tutorial/databases/setup.py')
| -rw-r--r-- | docs/quick_tutorial/databases/setup.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/quick_tutorial/databases/setup.py b/docs/quick_tutorial/databases/setup.py index 197617282..5d6935c57 100644 --- a/docs/quick_tutorial/databases/setup.py +++ b/docs/quick_tutorial/databases/setup.py @@ -6,7 +6,6 @@ requires = [ 'deform', 'pyramid', 'pyramid_chameleon', - 'pyramid_debugtoolbar', 'pyramid_tm', 'sqlalchemy', 'waitress', @@ -16,7 +15,8 @@ requires = [ # List of dependencies installed via `pip install -e ".[testing]"` # by virtue of the Setuptools `extras_require` value in the Python # dictionary below. -tests_require = [ +dev_requires = [ + 'pyramid_debugtoolbar', 'pytest', 'webtest', ] @@ -25,7 +25,7 @@ setup( name='tutorial', install_requires=requires, extras_require={ - 'testing': tests_require, + 'dev': dev_requires, }, entry_points={ 'paste.app_factory': [ |
