summaryrefslogtreecommitdiff
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
parent29f69b107313b3897280d10608f28a6fa5360e37 (diff)
downloadpyramid-43da8c96b77342b9d2203da9f32dc6b8db04e2a8.tar.gz
pyramid-43da8c96b77342b9d2203da9f32dc6b8db04e2a8.tar.bz2
pyramid-43da8c96b77342b9d2203da9f32dc6b8db04e2a8.zip
Fix comments in `setup.py`s
-rw-r--r--docs/quick_tutorial/authentication/setup.py4
-rw-r--r--docs/quick_tutorial/authorization/setup.py4
-rw-r--r--docs/quick_tutorial/databases/setup.py4
-rw-r--r--docs/quick_tutorial/debugtoolbar/setup.py5
-rw-r--r--docs/quick_tutorial/forms/setup.py4
-rw-r--r--docs/quick_tutorial/functional_testing/setup.py4
-rw-r--r--docs/quick_tutorial/ini/setup.py2
-rw-r--r--docs/quick_tutorial/jinja2/setup.py4
-rw-r--r--docs/quick_tutorial/json/setup.py4
-rw-r--r--docs/quick_tutorial/logging/setup.py4
-rw-r--r--docs/quick_tutorial/more_view_classes/setup.py4
-rw-r--r--docs/quick_tutorial/package/setup.py2
-rw-r--r--docs/quick_tutorial/request_response/setup.py4
-rw-r--r--docs/quick_tutorial/retail_forms/setup.py2
-rw-r--r--docs/quick_tutorial/routing/setup.py4
-rw-r--r--docs/quick_tutorial/sessions/setup.py4
-rw-r--r--docs/quick_tutorial/static_assets/setup.py4
-rw-r--r--docs/quick_tutorial/templating/setup.py4
-rw-r--r--docs/quick_tutorial/unit_testing/setup.py4
-rw-r--r--docs/quick_tutorial/view_classes/setup.py4
-rw-r--r--docs/quick_tutorial/views/setup.py4
21 files changed, 41 insertions, 38 deletions
diff --git a/docs/quick_tutorial/authentication/setup.py b/docs/quick_tutorial/authentication/setup.py
index 5c51563af..64366a2df 100644
--- a/docs/quick_tutorial/authentication/setup.py
+++ b/docs/quick_tutorial/authentication/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 = [
'bcrypt',
@@ -9,7 +9,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 = [
diff --git a/docs/quick_tutorial/authorization/setup.py b/docs/quick_tutorial/authorization/setup.py
index 5c51563af..64366a2df 100644
--- a/docs/quick_tutorial/authorization/setup.py
+++ b/docs/quick_tutorial/authorization/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 = [
'bcrypt',
@@ -9,7 +9,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 = [
diff --git a/docs/quick_tutorial/databases/setup.py b/docs/quick_tutorial/databases/setup.py
index 5d6935c57..c4e4ae2f2 100644
--- a/docs/quick_tutorial/databases/setup.py
+++ b/docs/quick_tutorial/databases/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 = [
'deform',
@@ -12,7 +12,7 @@ requires = [
'zope.sqlalchemy',
]
-# 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 = [
diff --git a/docs/quick_tutorial/debugtoolbar/setup.py b/docs/quick_tutorial/debugtoolbar/setup.py
index 6120d7a2f..53bc0f5c7 100644
--- a/docs/quick_tutorial/debugtoolbar/setup.py
+++ b/docs/quick_tutorial/debugtoolbar/setup.py
@@ -1,12 +1,15 @@
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',
'waitress',
]
+# List of dependencies installed via `pip install -e ".[dev]"`
+# by virtue of the Setuptools `extras_require` value in the Python
+# dictionary below.
dev_requires = [
'pyramid_debugtoolbar',
]
diff --git a/docs/quick_tutorial/forms/setup.py b/docs/quick_tutorial/forms/setup.py
index bf3ddd1a6..0e9ea72bc 100644
--- a/docs/quick_tutorial/forms/setup.py
+++ b/docs/quick_tutorial/forms/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 = [
'deform',
@@ -9,7 +9,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 = [
diff --git a/docs/quick_tutorial/functional_testing/setup.py b/docs/quick_tutorial/functional_testing/setup.py
index 278210299..a0fa8217c 100644
--- a/docs/quick_tutorial/functional_testing/setup.py
+++ b/docs/quick_tutorial/functional_testing/setup.py
@@ -1,13 +1,13 @@
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',
'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 = [
diff --git a/docs/quick_tutorial/ini/setup.py b/docs/quick_tutorial/ini/setup.py
index 1ecf9c4ff..f1d06fe75 100644
--- a/docs/quick_tutorial/ini/setup.py
+++ b/docs/quick_tutorial/ini/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',
diff --git a/docs/quick_tutorial/jinja2/setup.py b/docs/quick_tutorial/jinja2/setup.py
index fee95d267..ea2c59045 100644
--- a/docs/quick_tutorial/jinja2/setup.py
+++ b/docs/quick_tutorial/jinja2/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',
@@ -9,7 +9,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 = [
diff --git a/docs/quick_tutorial/json/setup.py b/docs/quick_tutorial/json/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/json/setup.py
+++ b/docs/quick_tutorial/json/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 = [
diff --git a/docs/quick_tutorial/logging/setup.py b/docs/quick_tutorial/logging/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/logging/setup.py
+++ b/docs/quick_tutorial/logging/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 = [
diff --git a/docs/quick_tutorial/more_view_classes/setup.py b/docs/quick_tutorial/more_view_classes/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/more_view_classes/setup.py
+++ b/docs/quick_tutorial/more_view_classes/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 = [
diff --git a/docs/quick_tutorial/package/setup.py b/docs/quick_tutorial/package/setup.py
index 9667d24bd..910c552ad 100644
--- a/docs/quick_tutorial/package/setup.py
+++ b/docs/quick_tutorial/package/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',
diff --git a/docs/quick_tutorial/request_response/setup.py b/docs/quick_tutorial/request_response/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/request_response/setup.py
+++ b/docs/quick_tutorial/request_response/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 = [
diff --git a/docs/quick_tutorial/retail_forms/setup.py b/docs/quick_tutorial/retail_forms/setup.py
index 46c10728a..dda0a2cc4 100644
--- a/docs/quick_tutorial/retail_forms/setup.py
+++ b/docs/quick_tutorial/retail_forms/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 = [
'deform',
diff --git a/docs/quick_tutorial/routing/setup.py b/docs/quick_tutorial/routing/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/routing/setup.py
+++ b/docs/quick_tutorial/routing/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 = [
diff --git a/docs/quick_tutorial/sessions/setup.py b/docs/quick_tutorial/sessions/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/sessions/setup.py
+++ b/docs/quick_tutorial/sessions/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 = [
diff --git a/docs/quick_tutorial/static_assets/setup.py b/docs/quick_tutorial/static_assets/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/static_assets/setup.py
+++ b/docs/quick_tutorial/static_assets/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 = [
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 = [
diff --git a/docs/quick_tutorial/unit_testing/setup.py b/docs/quick_tutorial/unit_testing/setup.py
index e9c773dab..a5f8a250b 100644
--- a/docs/quick_tutorial/unit_testing/setup.py
+++ b/docs/quick_tutorial/unit_testing/setup.py
@@ -1,13 +1,13 @@
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',
'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 = [
diff --git a/docs/quick_tutorial/view_classes/setup.py b/docs/quick_tutorial/view_classes/setup.py
index 0c980b613..e9c068a23 100644
--- a/docs/quick_tutorial/view_classes/setup.py
+++ b/docs/quick_tutorial/view_classes/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 = [
diff --git a/docs/quick_tutorial/views/setup.py b/docs/quick_tutorial/views/setup.py
index 278210299..a0fa8217c 100644
--- a/docs/quick_tutorial/views/setup.py
+++ b/docs/quick_tutorial/views/setup.py
@@ -1,13 +1,13 @@
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',
'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 = [