comparison setup.py @ 0:1c95a3fa76c1

initial commit of commentator
author k0s <k0scist@gmail.com>
date Sun, 24 Jan 2010 17:39:05 -0500
parents
children aebfbb10aefb
comparison
equal deleted inserted replaced
-1:000000000000 0:1c95a3fa76c1
1 from setuptools import setup, find_packages
2
3 try:
4 description = file('README.txt').read()
5 except IOError:
6 description = ''
7
8 version = "0.1"
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',
17 url='http://k0s.org',
18 license="",
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