Mercurial > hg > lxmlmiddleware
annotate 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 |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 import sys, os | |
3 | |
3
ca1f58f5bad4
pass a webob request and response to the manipulate method, API change, bumping version
k0s <k0scist@gmail.com>
parents:
2
diff
changeset
|
4 version = "0.3" |
0 | 5 |
6 setup(name='lxmlmiddleware', | |
7 version=version, | |
8 description="stack of middleware to deal with a response as a LXML etree", | |
9 long_description=""" | |
10 """, | |
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
12 author='Jeff Hammel', | |
13 author_email='k0scist@gmail.com', | |
2
bb7d50d54cb6
correct huge mistake in how i try to get the response
k0s <k0scist@gmail.com>
parents:
1
diff
changeset
|
14 url='http://k0s.org/hg/lxmlmiddleware', |
0 | 15 license="", |
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
17 include_package_data=True, | |
18 zip_safe=False, | |
19 install_requires=[ | |
20 # -*- Extra requirements: -*- | |
4 | 21 'WebOb', |
0 | 22 'Paste', |
23 'PasteScript', | |
24 'lxml', | |
25 ], | |
26 entry_points=""" | |
27 # -*- Entry points: -*- | |
28 [paste.app_factory] | |
29 example = lxmlmiddleware.example:factory | |
30 """, | |
31 ) |