Mercurial > hg > wordstream
diff setup.py @ 0:8af3412e907a
initial import of wordstream
author | k0s <k0scist@gmail.com> |
---|---|
date | Fri, 01 Jan 2010 19:35:32 -0500 |
parents | |
children | df84e61ae1e4 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Fri Jan 01 19:35:32 2010 -0500 @@ -0,0 +1,34 @@ +from setuptools import setup, find_packages + +version = "0.0" + +setup(name='wordstream', + version=version, + description="word streamer", + long_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', + 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] + wordstream = wordstream.factory:factory + + [console_scripts] + wordstream = wordstream.main:main + """, + ) +