Mercurial > hg > commentator
annotate setup.py @ 4:f02a3672254e
try to import from two different places in webob
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 26 Feb 2010 11:12:37 -0500 |
parents | 689b9d928dc8 |
children | 451169e51935 |
rev | line source |
---|---|
0 | 1 from setuptools import setup, find_packages |
2 | |
3 try: | |
4 description = file('README.txt').read() | |
5 except IOError: | |
6 description = '' | |
7 | |
4
f02a3672254e
try to import from two different places in webob
k0s <k0scist@gmail.com>
parents:
2
diff
changeset
|
8 version = "0.2.1" |
0 | 9 |
10 setup(name='commentator', | |
11 version=version, | |
12 description="WSGI commenting middleware", | |
13 long_description=description, | |
14 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
15 author='Jeff Hammel', | |
16 author_email='k0scist@gmail.com', | |
1 | 17 url='http://k0s.org/hg/commentator', |
18 license="GPL", | |
0 | 19 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), |
20 include_package_data=True, | |
21 zip_safe=False, | |
22 install_requires=[ | |
23 # -*- Extra requirements: -*- | |
24 'WebOb', | |
25 'Paste', | |
26 'PasteScript', | |
27 'genshi', | |
28 # 'CouchDB' | |
29 ], | |
30 entry_points=""" | |
31 # -*- Entry points: -*- | |
32 [paste.app_factory] | |
33 commentator = commentator.example:factory | |
34 """, | |
35 ) | |
36 |