Steve Piercy
2018-10-09 43da8c96b77342b9d2203da9f32dc6b8db04e2a8
Fix comments in `setup.py`s
21 files modified
79 ■■■■ changed files
docs/quick_tutorial/authentication/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/authorization/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/databases/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/debugtoolbar/setup.py 5 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/forms/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/functional_testing/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/ini/setup.py 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/jinja2/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/json/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/logging/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/more_view_classes/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/package/setup.py 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/request_response/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/retail_forms/setup.py 2 ●●● patch | view | raw | blame | history
docs/quick_tutorial/routing/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/sessions/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/static_assets/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/templating/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/unit_testing/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/view_classes/setup.py 4 ●●●● patch | view | raw | blame | history
docs/quick_tutorial/views/setup.py 4 ●●●● patch | view | raw | blame | history
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 @@
    '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 = [
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 @@
    '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 = [
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 @@
    '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 = [
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',
]
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 @@
    '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 = [
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 = [
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',
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 @@
    '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 = [
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 @@
    '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 = [
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 @@
    '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 = [
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 @@
    '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 = [
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',
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 @@
    '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 = [
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',
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 @@
    '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 = [
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 @@
    '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 = [
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 @@
    '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 = [
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 @@
    '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 = [
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 = [
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 @@
    '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 = [
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 = [