summaryrefslogtreecommitdiff
path: root/docs/tutorials/wiki/definingmodels.rst
diff options
context:
space:
mode:
authorChris McDonough <chrism@plope.com>2011-04-01 14:40:23 -0400
committerChris McDonough <chrism@plope.com>2011-04-01 14:40:23 -0400
commit10d5d38f9d16ebca4999837dfbc3b22a701e7756 (patch)
treeb4c7226e4bc334cfe0cd3f8aa59b321430dab03b /docs/tutorials/wiki/definingmodels.rst
parent0b262906f14975a6e6158635ff7568e49c5258bb (diff)
parent04ecdb323383a92f00e146be87c91e0f2a7f0281 (diff)
downloadpyramid-10d5d38f9d16ebca4999837dfbc3b22a701e7756.tar.gz
pyramid-10d5d38f9d16ebca4999837dfbc3b22a701e7756.tar.bz2
pyramid-10d5d38f9d16ebca4999837dfbc3b22a701e7756.zip
Merge branch 'zodb-tutorial' of https://github.com/ppaez/pyramid into ppaez-zodb-tutorial
Diffstat (limited to 'docs/tutorials/wiki/definingmodels.rst')
-rw-r--r--docs/tutorials/wiki/definingmodels.rst16
1 files changed, 0 insertions, 16 deletions
diff --git a/docs/tutorials/wiki/definingmodels.rst b/docs/tutorials/wiki/definingmodels.rst
index 8352c5344..3d2d01061 100644
--- a/docs/tutorials/wiki/definingmodels.rst
+++ b/docs/tutorials/wiki/definingmodels.rst
@@ -127,22 +127,6 @@ When we're done changing ``tests.py``, it will look something like so:
:linenos:
:language: python
-Declaring Dependencies in Our ``setup.py`` File
------------------------------------------------
-
-Our application now depends on packages which are not dependencies of the
-original "tutorial" application as it was generated by the ``paster create``
-command. We'll add these dependencies to our ``tutorial`` package's
-``setup.py`` file by assigning these dependencies to both the
-``install_requires`` and the ``tests_require`` parameters to the ``setup``
-function. In particular, we require the ``docutils`` package.
-
-Our resulting ``setup.py`` should look like so:
-
-.. literalinclude:: src/models/setup.py
- :linenos:
- :language: python
-
Running the Tests
-----------------