summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/authorization.rst
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2024-02-07 12:24:11 -0500
committerTres Seaver <tseaver@palladion.com>2024-02-07 12:24:11 -0500
commit94d5ce60c783eed483d2fff49a6470b066430bfb (patch)
treeac81f7577d873d1f667c34148cb6764865290720 /docs/tutorials/wiki/authorization.rst
parent13909fa1c603028109039e48af096ac4676a0010 (diff)
downloadpyramid-94d5ce60c783eed483d2fff49a6470b066430bfb.tar.gz
pyramid-94d5ce60c783eed483d2fff49a6470b066430bfb.tar.bz2
pyramid-94d5ce60c783eed483d2fff49a6470b066430bfb.zip
docs: update ZODB wiki tutorial to cookiecutter
- Describe 'pyproject.toml' usage (replacing 'setup.py', 'pytest.ini', '.coveragerc'). - Document the new PyPA-blessed build process.
Diffstat (limited to 'docs/tutorials/wiki/authorization.rst')
-rw-r--r--docs/tutorials/wiki/authorization.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/tutorials/wiki/authorization.rst b/docs/tutorials/wiki/authorization.rst
index 2b700ee5b..f7f1be8d0 100644
--- a/docs/tutorials/wiki/authorization.rst
+++ b/docs/tutorials/wiki/authorization.rst
@@ -38,12 +38,12 @@ Add dependencies
~~~~~~~~~~~~~~~~
Just like in :ref:`wiki_defining_views`, we need a new dependency.
-We need to add the `bcrypt <https://pypi.org/project/bcrypt/>`_ package to our tutorial package's ``setup.py`` file by assigning this dependency to the ``requires`` parameter in the ``setup()`` function.
+We need to add the `bcrypt <https://pypi.org/project/bcrypt/>`_ package to our tutorial package's ``pyproject.toml`` file by assigning this dependency to the ``dependencies`` stanza.
-Open ``setup.py`` and edit it to look like the following:
+Open ``pyproject.toml`` and edit it to look like the following:
-.. literalinclude:: src/authorization/setup.py
- :lines: 11-30
+.. literalinclude:: src/authorization/pyproject.toml
+ :lines: 20-33
:lineno-match:
:emphasize-lines: 2
:language: python