summaryrefslogtreecommitdiff
path: root/docs/quick_tutorial/package.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2014-04-07 09:55:11 -0400
committerChris McDonough <chrism@plope.com>2014-04-07 09:55:11 -0400
commitbcf18220be9c21ff4b1af50f45b90aadfa7820f5 (patch)
tree99232b448c08c5689117cb84c025efb349b50b0f /docs/quick_tutorial/package.rst
parentd7b647d27ebde9bc8203629b651e69d6e7ac7c38 (diff)
parent32200c3af84c352c066eb2c402496305375912e4 (diff)
downloadpyramid-bcf18220be9c21ff4b1af50f45b90aadfa7820f5.tar.gz
pyramid-bcf18220be9c21ff4b1af50f45b90aadfa7820f5.tar.bz2
pyramid-bcf18220be9c21ff4b1af50f45b90aadfa7820f5.zip
Merge branch 'master' of github.com:Pylons/pyramid
Diffstat (limited to 'docs/quick_tutorial/package.rst')
-rw-r--r--docs/quick_tutorial/package.rst7
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/quick_tutorial/package.rst b/docs/quick_tutorial/package.rst
index 90d022b29..8fb052d5b 100644
--- a/docs/quick_tutorial/package.rst
+++ b/docs/quick_tutorial/package.rst
@@ -22,8 +22,7 @@ Explaining it all in this
tutorial will induce madness. For this tutorial, this is all you need to
know:
-- We will have a directory for each tutorial step as a
- setuptools *project*
+- We will have a directory for each tutorial step as a setuptools *project*
- This project will contain a ``setup.py`` which injects the features
of the setuptool's project machinery into the directory
@@ -97,8 +96,8 @@ In this step we have a Python package called ``tutorial``. We use the
same name in each step of the tutorial, to avoid unnecessary re-typing.
Above this ``tutorial`` directory we have the files that handle the
-packaging of this, well, package. At the moment, all we need is a
-bare-bones ``ini/setup.py``.
+packaging of this project. At the moment, all we need is a
+bare-bones ``setup.py``.
Everything else is the same about our application. We simply made a
Python package with a ``setup.py`` and installed it in development mode.