summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pyramid/paster.py15
-rw-r--r--setup.py3
2 files changed, 0 insertions, 18 deletions
diff --git a/pyramid/paster.py b/pyramid/paster.py
index 5ac043c19..488721ef0 100644
--- a/pyramid/paster.py
+++ b/pyramid/paster.py
@@ -39,21 +39,6 @@ class AlchemyProjectTemplate(PyramidTemplate):
summary = 'pyramid SQLAlchemy project using traversal'
template_renderer = staticmethod(paste_script_template_renderer)
-class PylonsBasicProjectTemplate(PyramidTemplate):
- _template_dir = 'paster_templates/pylons_basic'
- summary = 'Pylons basic project'
- template_renderer = staticmethod(paste_script_template_renderer)
-
-class PylonsMinimalProjectTemplate(PyramidTemplate):
- _template_dir = 'paster_templates/pylons_minimal'
- summary = 'Pylons minimal project'
- template_renderer = staticmethod(paste_script_template_renderer)
-
-class PylonsSQLAlchemyProjectTemplate(PyramidTemplate):
- _template_dir = 'paster_templates/pylons_sqla'
- summary = 'Pylons SQLAlchemy project'
- template_renderer = staticmethod(paste_script_template_renderer)
-
def get_app(config_file, name, loadapp=loadapp):
""" Return the WSGI application named ``name`` in the PasteDeploy
config file ``config_file``"""
diff --git a/setup.py b/setup.py
index 889aaecec..587e1bb1f 100644
--- a/setup.py
+++ b/setup.py
@@ -83,9 +83,6 @@ setup(name='pyramid',
pyramid_zodb=pyramid.paster:ZODBProjectTemplate
pyramid_routesalchemy=pyramid.paster:RoutesAlchemyProjectTemplate
pyramid_alchemy=pyramid.paster:AlchemyProjectTemplate
- pylons_basic=pyramid.paster:PylonsBasicProjectTemplate
- pylons_minimal=pyramid.paster:PylonsMinimalProjectTemplate
- pylons_sqla=pyramid.paster:PylonsSQLAlchemyProjectTemplate
[paste.paster_command]
pshell=pyramid.paster:PShellCommand
proutes=pyramid.paster:PRoutesCommand