summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-01-19 03:34:54 -0500
committerChris McDonough <chrism@plope.com>2011-01-19 03:34:54 -0500
commit3f695c5dd899b640b71414d733f6dbfa5fa83a73 (patch)
treebf42c6b77df0e90a430a37c35fe90ec90fc42aba /docs/narr
parent2d4aea1798ac8d3834eca2338b7fea87cb64707a (diff)
downloadpyramid-3f695c5dd899b640b71414d733f6dbfa5fa83a73.tar.gz
pyramid-3f695c5dd899b640b71414d733f6dbfa5fa83a73.tar.bz2
pyramid-3f695c5dd899b640b71414d733f6dbfa5fa83a73.zip
add Python to identify kind of package
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/project.rst14
1 files changed, 7 insertions, 7 deletions
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index 24faad5da..f0ee91164 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -8,13 +8,13 @@ As we saw in :ref:`firstapp_chapter`, it's possible to create a
convenient to use a *template* to generate a basic :app:`Pyramid`
:term:`project`.
-A project is a directory that contains at least one :term:`package`. You'll
-use a template to create a project, and you'll create your application logic
-within a package that lives inside the project. Even if your application is
-extremely simple, it is useful to place code that drives the application
-within a package, because a package is more easily extended with new code.
-An application that lives inside a package can also be distributed more
-easily than one which does not live within a package.
+A project is a directory that contains at least one Python :term:`package`.
+You'll use a template to create a project, and you'll create your application
+logic within a package that lives inside the project. Even if your
+application is extremely simple, it is useful to place code that drives the
+application within a package, because a package is more easily extended with
+new code. An application that lives inside a package can also be distributed
+more easily than one which does not live within a package.
:app:`Pyramid` comes with a variety of templates that you can use to generate
a project. Each template makes different configuration assumptions about