Mercurial > hg > discussions
diff setup.py @ 0:c904249afb04
initial commit of discussions
author | k0s <k0scist@gmail.com> |
---|---|
date | Sat, 02 Jan 2010 13:36:23 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Sat Jan 02 13:36:23 2010 -0500 @@ -0,0 +1,31 @@ +from setuptools import setup, find_packages + +version = "0.0" + +setup(name='discusssions', + version=version, + description="mailing lists, forums are all part of discussions: a many to many conversation", + long_description=""" +""", + classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers + author='Jeff Hammel', + author_email='', + url='', + license="", + packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + include_package_data=True, + zip_safe=False, + install_requires=[ + # -*- Extra requirements: -*- + 'WebOb', + 'Paste', + 'PasteScript', + 'genshi' + ], + entry_points=""" + # -*- Entry points: -*- + [paste.app_factory] + discusssions = discusssions.factory:factory + """, + ) +