0
|
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
|