Skip to content

Commit

Permalink
Fix comments in setup.pys
Browse files Browse the repository at this point in the history
  • Loading branch information
stevepiercy committed Oct 9, 2018
1 parent 29f69b1 commit 43da8c9
Show file tree
Hide file tree
Showing 21 changed files with 41 additions and 38 deletions.
4 changes: 2 additions & 2 deletions 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',
Expand All @@ -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 = [
Expand Down
4 changes: 2 additions & 2 deletions 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',
Expand All @@ -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 = [
Expand Down
4 changes: 2 additions & 2 deletions 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',
Expand All @@ -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 = [
Expand Down
5 changes: 4 additions & 1 deletion 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',
]
Expand Down
4 changes: 2 additions & 2 deletions 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',
Expand All @@ -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 = [
Expand Down
4 changes: 2 additions & 2 deletions 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 = [
Expand Down
2 changes: 1 addition & 1 deletion 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',
Expand Down
4 changes: 2 additions & 2 deletions 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',
Expand All @@ -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 = [
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/json/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/logging/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/more_view_classes/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
2 changes: 1 addition & 1 deletion 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',
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/request_response/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
2 changes: 1 addition & 1 deletion 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',
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/routing/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/sessions/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/static_assets/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/templating/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
4 changes: 2 additions & 2 deletions 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 = [
Expand Down
4 changes: 2 additions & 2 deletions docs/quick_tutorial/view_classes/setup.py
@@ -1,14 +1,14 @@
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',
'pyramid_chameleon',
'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 = [
Expand Down
4 changes: 2 additions & 2 deletions 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 = [
Expand Down

0 comments on commit 43da8c9

Please sign in to comment.