comparison webob_view/template/setup.py_tmpl @ 0:72cb6dc31e3f

initial commit of webob_view from https://svn.openplans.org/svn/standalone/templates/webob_view/trunk/
author k0s <k0scist@gmail.com>
date Tue, 27 Oct 2009 15:04:33 -0400
parents
children 9aa8f5721649
comparison
equal deleted inserted replaced
-1:000000000000 0:72cb6dc31e3f
1 from setuptools import setup, find_packages
2 import sys, os
3
4 version = "0.0"
5
6 setup(name=${repr(project)},
7 version=version,
8 description="${description|nothing}",
9 long_description="""
10 """,
11 classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
12 author=${repr(author)|empty},
13 author_email=${repr(author_email)|empty},
14 url=${repr(url)|empty},
15 license=${repr(license_name)|empty},
16 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
17 include_package_data=True,
18 zip_safe=False,
19 install_requires=[
20 # -*- Extra requirements: -*-
21 'WebOb',
22 'Paste',
23 'PasteScript',
24 ],
25 entry_points="""
26 # -*- Entry points: -*-
27 [paste.app_factory]
28 main = ${project}.factory:factory
29 """,
30 )
31