summaryrefslogtreecommitdiff
path: root/repoze/bfg/paster_templates/alchemy/setup.py_tmpl
diff options
context:
space:
mode:
authorChris McDonough <chrism@agendaless.com>2009-11-10 05:03:02 +0000
committerChris McDonough <chrism@agendaless.com>2009-11-10 05:03:02 +0000
commitc1bc021263d4ae2299851b809d5c4d0e48399f61 (patch)
treea9d3c98f77da8ad0df31cc8501722594c7e407bb /repoze/bfg/paster_templates/alchemy/setup.py_tmpl
parenta461666449e767cf570e5689b13103037c538eb0 (diff)
downloadpyramid-c1bc021263d4ae2299851b809d5c4d0e48399f61.tar.gz
pyramid-c1bc021263d4ae2299851b809d5c4d0e48399f61.tar.bz2
pyramid-c1bc021263d4ae2299851b809d5c4d0e48399f61.zip
Templates
--------- - Remove ``ez_setup.py`` and its import from all paster templates, samples, and tutorials for ``distribute`` compatibility. The documentation already explains how to install virtualenv (which will include some ``setuptools`` package), so these files, imports and usages were superfluous. Deprecations ------------ - The ``options`` kw arg to the ``repoze.bfg.router.make_app`` function is deprecated. In its place is the keyword argument ``settings``. The ``options`` keyword continues to work, and a deprecation warning is not emitted when it is detected. However, the paster templates, code samples, and documentation now make reference to ``settings`` rather than ``options``. This change/deprecation was mainly made for purposes of clarity and symmetry with the ``get_settings()`` API and dicussions of "settings" in various places in the docs: we want to use the same name to refer to the same thing everywhere.
Diffstat (limited to 'repoze/bfg/paster_templates/alchemy/setup.py_tmpl')
-rw-r--r--repoze/bfg/paster_templates/alchemy/setup.py_tmpl3
1 files changed, 0 insertions, 3 deletions
diff --git a/repoze/bfg/paster_templates/alchemy/setup.py_tmpl b/repoze/bfg/paster_templates/alchemy/setup.py_tmpl
index 4739d811d..bbeedf3f3 100644
--- a/repoze/bfg/paster_templates/alchemy/setup.py_tmpl
+++ b/repoze/bfg/paster_templates/alchemy/setup.py_tmpl
@@ -1,9 +1,6 @@
import os
import sys
-from ez_setup import use_setuptools
-use_setuptools()
-
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))