Mercurial > hg > commentator
view setup.py @ 8:a3f3c403b1e8
commenting.gv.txt
author | Jeff Hammel <jhammel@mozilla.com> |
---|---|
date | Tue, 12 Nov 2013 22:29:03 -0800 |
parents | c95f1dfed329 |
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 """, )