Mercurial > hg > webcalc
diff setup.py @ 0:1eea6356d2e5
initial import of webcalc
author | k0s <k0scist@gmail.com> |
---|---|
date | Mon, 07 Sep 2009 15:09:03 -0400 |
parents | |
children | 12ac99c240ca |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/setup.py Mon Sep 07 15:09:03 2009 -0400 @@ -0,0 +1,36 @@ +from setuptools import setup, find_packages + +version = "0.1" + +setup(name='webcalc', + version=version, + description="web-based calculator", + long_description=""" +""", + classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers + author='Jeff Hammel', + author_email='k0scist@gmail.com', + url='', + 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', + 'simplejson' + ], + entry_points=""" + # -*- Entry points: -*- + [paste.app_factory] + main = webcalc.factory:factory + + [webcalc.formatters] + text/plain = webcalc.formatters:CSVformat + application/json = webcalc.formatters:JSONformat + """, + ) +