Mercurial > hg > webcalc
comparison 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 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:1eea6356d2e5 |
---|---|
1 from setuptools import setup, find_packages | |
2 | |
3 version = "0.1" | |
4 | |
5 setup(name='webcalc', | |
6 version=version, | |
7 description="web-based calculator", | |
8 long_description=""" | |
9 """, | |
10 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers | |
11 author='Jeff Hammel', | |
12 author_email='k0scist@gmail.com', | |
13 url='', | |
14 license="GPL", | |
15 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
16 include_package_data=True, | |
17 zip_safe=False, | |
18 install_requires=[ | |
19 # -*- Extra requirements: -*- | |
20 'WebOb', | |
21 'Paste', | |
22 'PasteScript', | |
23 'genshi', | |
24 'simplejson' | |
25 ], | |
26 entry_points=""" | |
27 # -*- Entry points: -*- | |
28 [paste.app_factory] | |
29 main = webcalc.factory:factory | |
30 | |
31 [webcalc.formatters] | |
32 text/plain = webcalc.formatters:CSVformat | |
33 application/json = webcalc.formatters:JSONformat | |
34 """, | |
35 ) | |
36 |