view setup.py @ 1:2f45e6ae75fc

adding setup metadata
author k0s <k0scist@gmail.com>
date Fri, 26 Feb 2010 13:23:52 -0500
parents 196f241286f7
children 79a43cbdf584
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = "0.1"

setup(name='clwapp',
      version=version,
      description="Command Line Web APP",
      long_description="""gives the output from a command line application TTW
""",
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='jhammel@openplans.org',
      url='',
      license="",
      packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
      include_package_data=True,
      zip_safe=False,
      install_requires=[
          # -*- Extra requirements: -*-
         'WebOb',	
         'Paste',
         'PasteScript',
      ],
      entry_points="""
      # -*- Entry points: -*-
      [paste.app_factory]
      main = clwapp.factory:factory
      """,
      )