summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/templating/setup.py
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-10-08 23:55:40 -0700
committerSteve Piercy <web@stevepiercy.com>2018-10-08 23:55:40 -0700
commit43da8c96b77342b9d2203da9f32dc6b8db04e2a8 (patch)
tree5134602162cc3cbe557e52caf9e82e8ccb7473ed /docs/quick_tutorial/templating/setup.py
parent29f69b107313b3897280d10608f28a6fa5360e37 (diff)
downloadpyramid-43da8c96b77342b9d2203da9f32dc6b8db04e2a8.tar.gz
pyramid-43da8c96b77342b9d2203da9f32dc6b8db04e2a8.tar.bz2
pyramid-43da8c96b77342b9d2203da9f32dc6b8db04e2a8.zip
Fix comments in `setup.py`s
Diffstat (limited to 'docs/quick_tutorial/templating/setup.py')
-rw-r--r--docs/quick_tutorial/templating/setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/quick_tutorial/templating/setup.py b/docs/quick_tutorial/templating/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/templating/setup.py
+++ b/docs/quick_tutorial/templating/setup.py
@@ -1,6 +1,6 @@
from setuptools import setup
-# List of dependencies installed via `pip install -e .`.
+# List of dependencies installed via `pip install -e .`
# by virtue of the Setuptools `install_requires` value below.
requires = [
'pyramid',
@@ -8,7 +8,7 @@ requires = [
'waitress',
]
-# List of dependencies installed via `pip install -e ".[testing]"`
+# List of dependencies installed via `pip install -e ".[dev]"`
# by virtue of the Setuptools `extras_require` value in the Python
# dictionary below.
dev_requires = [