import ez_setup ez_setup.use_setuptools() from setuptools import setup, find_packages setup(name = "Buffet", version = "1.1alpha", author = "Christian Wyglendowski, Bill Mill", author_email = "christian@dowski.com", url = "http://projects.dowski.com/view/buffet", license="MIT", zip_safe=False, description = "A flexible templating filter for CherryPy", long_description=""" For the latest on Buffet, see http://projects.dowski.com/projects/buffet Buffet is a universal templating system for CherryPy. It supports plugins that follow the interface defined at http://docs.turbogears.org/1.0/TemplatePlugins and register setuptools entry points in the 'python.templating.engines' entry point group. Some available template plugins as of this release: * TurboCheetah - Cheetah template support * TurboKid - Kid template support * BuffetMyghty - Myghty template support * BuffetString - Python string Template support * BuffetXSLT - XSLT templating using Amara * Breve - a templating language similar to Nevow's STAN * TurboHtmlPy - Formencode.htmlgen support You should simply be able to do "easy_install [PluginName]" to get quick support for each engine in Buffet. """, py_modules = ['buffet'], )