summaryrefslogtreecommitdiff
path: root/docs/narr
diff options
context:
space:
mode:
authorWichert Akkerman <wichert@wiggy.net>2014-04-08 22:04:47 +0200
committerWichert Akkerman <wichert@wiggy.net>2014-04-08 22:04:47 +0200
commiteab0eb5068754da33123d5a7bc3faf025a3fc14e (patch)
tree9762ffef7271789b91792c79f69ec15dd788073a /docs/narr
parent2daf6e45fc205e99005f477670993fcf47776e35 (diff)
downloadpyramid-eab0eb5068754da33123d5a7bc3faf025a3fc14e.tar.gz
pyramid-eab0eb5068754da33123d5a7bc3faf025a3fc14e.tar.bz2
pyramid-eab0eb5068754da33123d5a7bc3faf025a3fc14e.zip
Drop setup.cfg from scaffolds
Since setup.cfg is no longer needed for Babel, and no scaffold or documentation references nose there is no need to keep them.
Diffstat (limited to 'docs/narr')
-rw-r--r--docs/narr/MyProject/setup.cfg6
-rw-r--r--docs/narr/project.rst22
2 files changed, 0 insertions, 28 deletions
diff --git a/docs/narr/MyProject/setup.cfg b/docs/narr/MyProject/setup.cfg
deleted file mode 100644
index 229a686f8..000000000
--- a/docs/narr/MyProject/setup.cfg
+++ /dev/null
@@ -1,6 +0,0 @@
-[nosetests]
-match = ^test
-nocapture = 1
-cover-package = myproject
-with-coverage = 1
-cover-erase = 1
diff --git a/docs/narr/project.rst b/docs/narr/project.rst
index 3631a9782..39e55706f 100644
--- a/docs/narr/project.rst
+++ b/docs/narr/project.rst
@@ -492,7 +492,6 @@ structure:
│   ├── tests.py
│   └── views.py
├── production.ini
- ├── setup.cfg
└── setup.py
The ``MyProject`` :term:`Project`
@@ -515,9 +514,6 @@ describe, run, and test your application.
#. ``production.ini`` is a :term:`PasteDeploy` configuration file that can
be used to execute your application in a production configuration.
-#. ``setup.cfg`` is a :term:`setuptools` configuration file used by
- ``setup.py``.
-
#. ``MANIFEST.in`` is a :term:`distutils` "manifest" file, naming which files
should be included in a source distribution of the package when ``python
setup.py sdist`` is run.
@@ -746,24 +742,6 @@ named ``MyProject-0.1.tar.gz``. You can send this tarball to other people
who want to install and use your application.
.. index::
- single: setup.cfg
-
-``setup.cfg``
-~~~~~~~~~~~~~
-
-The ``setup.cfg`` file is a :term:`setuptools` configuration file. It
-contains various settings related to testing and internationalization:
-
-Our generated ``setup.cfg`` looks like this:
-
-.. literalinclude:: MyProject/setup.cfg
- :language: guess
- :linenos:
-
-The values in the default setup file make the testing commands to work more
-smoothly.
-
-.. index::
single: package
The ``myproject`` :term:`Package`