Mercurial > hg > commentator
view setup.py @ 6:c95f1dfed329
some work to get commenting + captchas working together
author | k0s <k0scist@gmail.com> |
---|---|
date | Tue, 02 Mar 2010 11:44:10 -0500 |
parents | 451169e51935 |
children | 825833a5c4a7 |
line wrap: on
line source
from setuptools import setup, find_packages try: description = file('README.txt').read() except IOError: description = '' version = "0.2.2" setup(name='commentator', version=version, description="WSGI commenting middleware", long_description=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/commentator', license="GPL", packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=False, install_requires=[ # -*- Extra requirements: -*- 'WebOb', 'Paste', 'PasteScript', 'genshi', # 'CouchDB' ], entry_points=""" # -*- Entry points: -*- [paste.app_factory] commentator = commentator.example:factory captcha_comments = commentator.example:captcha_factory """, )