view setup.py @ 3:ca1f58f5bad4

pass a webob request and response to the manipulate method, API change, bumping version
author k0s <k0scist@gmail.com>
date Tue, 26 Jan 2010 22:57:00 -0500
parents bb7d50d54cb6
children d781bdc77164
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = "0.3"

setup(name='lxmlmiddleware',
      version=version,
      description="stack of middleware to deal with a response as a LXML etree",
      long_description="""
""",
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='k0scist@gmail.com',
      url='http://k0s.org/hg/lxmlmiddleware',
      license="",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
         'WebOb',	
         'Paste',
         'PasteScript',
         'lxml',
      ],
      entry_points="""
      # -*- Entry points: -*-
      [paste.app_factory]
      example = lxmlmiddleware.example:factory
      """,
      )