Mercurial > hg > lxmlmiddleware
view setup.py @ 4:d781bdc77164 default tip
rm whitespace
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Tue, 03 Nov 2020 09:54:24 -0800 |
parents | ca1f58f5bad4 |
children |
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 """, )