diff options
| author | Steve Piercy <web@stevepiercy.com> | 2018-10-08 02:12:00 -0700 |
|---|---|---|
| committer | Steve Piercy <web@stevepiercy.com> | 2018-10-08 02:12:00 -0700 |
| commit | 307313574f9726d1c03639114d1c976535c9b968 (patch) | |
| tree | b8fab435de6c6dcf21e4172b831ff2eef27acaeb /docs/quick_tutorial/debugtoolbar | |
| parent | 3a943e8b3a388938a93de82a16b0bc5b25eaf48a (diff) | |
| download | pyramid-307313574f9726d1c03639114d1c976535c9b968.tar.gz pyramid-307313574f9726d1c03639114d1c976535c9b968.tar.bz2 pyramid-307313574f9726d1c03639114d1c976535c9b968.zip | |
Update all the `setup.py`s
Diffstat (limited to 'docs/quick_tutorial/debugtoolbar')
| -rw-r--r-- | docs/quick_tutorial/debugtoolbar/setup.py | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/docs/quick_tutorial/debugtoolbar/setup.py b/docs/quick_tutorial/debugtoolbar/setup.py index a947e20d8..5fee31f01 100644 --- a/docs/quick_tutorial/debugtoolbar/setup.py +++ b/docs/quick_tutorial/debugtoolbar/setup.py @@ -1,15 +1,19 @@ from setuptools import setup +# List of dependencies installed via `pip install -e .`. +# by virtue of the Setuptools `install_requires` value below. requires = [ 'pyramid', 'pyramid_debugtoolbar', 'waitress', ] -setup(name='tutorial', - install_requires=requires, - entry_points="""\ - [paste.app_factory] - main = tutorial:main - """, - ) +setup( + name='tutorial', + install_requires=requires, + entry_points={ + 'paste.app_factory': [ + 'main = tutorial:main' + ], + }, +) |
