comparison setup.py @ 265:0f2bc982a2b9

Split up the plugin implementation into two classes: one for markup templates (?genshi-markup? or just ?genshi?) and one for text templates (?genshi-text?). Also added an example for plain-text templating to the TurboGears example app.
author cmlenz
date Fri, 22 Sep 2006 17:22:53 +0000
parents 3ea3977c8c4d
children 5f2c7782cd8a
comparison
equal deleted inserted replaced
262:77d92c5c23d3 265:0f2bc982a2b9
50 test_suite = 'genshi.tests.suite', 50 test_suite = 'genshi.tests.suite',
51 51
52 extras_require = {'plugin': ['setuptools>=0.6a2']}, 52 extras_require = {'plugin': ['setuptools>=0.6a2']},
53 entry_points = """ 53 entry_points = """
54 [python.templating.engines] 54 [python.templating.engines]
55 genshi = genshi.plugin:TemplateEnginePlugin[plugin] 55 genshi = genshi.plugin:MarkupTemplateEnginePlugin[plugin]
56 genshi-markup = genshi.plugin:MarkupTemplateEnginePlugin[plugin]
57 genshi-text = genshi.plugin:TextTemplateEnginePlugin[plugin]
56 """, 58 """,
57 ) 59 )
Copyright (C) 2012-2017 Edgewall Software