summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/package
diff options
context:
space:
mode:
Diffstat (limited to 'docs/quick_tutorial/package')
-rw-r--r--docs/quick_tutorial/package/setup.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/quick_tutorial/package/setup.py b/docs/quick_tutorial/package/setup.py
index 77fedee2d..910c552ad 100644
--- a/docs/quick_tutorial/package/setup.py
+++ b/docs/quick_tutorial/package/setup.py
@@ -1,10 +1,13 @@
from setuptools import setup
+# List of dependencies installed via `pip install -e .`
+# by virtue of the Setuptools `install_requires` value below.
requires = [
'pyramid',
'waitress',
]
-setup(name='tutorial',
- install_requires=requires,
+setup(
+ name='tutorial',
+ install_requires=requires,
)