diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:22:36 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-07 04:28:09 -0700 |
| commit | 57d49fbe4f507871e5baac30c2f393ec21801e17 (patch) | |
| tree | 0477c66a65fcce9adf368719e15d901725b7950e /docs/quick_tutorial/databases/setup.py | |
| parent | 42aa12db0deec477bb3400c4a5bf213ece58cdf0 (diff) | |
| download | pyramid-57d49fbe4f507871e5baac30c2f393ec21801e17.tar.gz pyramid-57d49fbe4f507871e5baac30c2f393ec21801e17.tar.bz2 pyramid-57d49fbe4f507871e5baac30c2f393ec21801e17.zip | |
Carry forward previous setup.py changes.
Add emphasize lines to highlight what changed.
Improve instructions for when to run `pip install -e .`
Standardize numbered list format.
Diffstat (limited to 'docs/quick_tutorial/databases/setup.py')
| -rw-r--r-- | docs/quick_tutorial/databases/setup.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/quick_tutorial/databases/setup.py b/docs/quick_tutorial/databases/setup.py index 13d1d6637..29dede2af 100644 --- a/docs/quick_tutorial/databases/setup.py +++ b/docs/quick_tutorial/databases/setup.py @@ -4,6 +4,7 @@ requires = [ 'deform', 'pyramid', 'pyramid_chameleon', + 'pyramid_debugtoolbar', 'pyramid_tm', 'sqlalchemy', 'waitress', @@ -12,10 +13,16 @@ requires = [ setup(name='tutorial', install_requires=requires, + extras_require={ + 'test': [ + 'pytest', + 'webtest', + ], + }, entry_points="""\ [paste.app_factory] main = tutorial:main [console_scripts] initialize_tutorial_db = tutorial.initialize_db:main """, -) + ) |
