view setup.py @ 0:3812c1493dde default tip

add the slasher...be afraid, be very afraid
author k0s <k0scist@gmail.com>
date Mon, 11 Jan 2010 17:50:36 -0500
parents
children
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = "0.0"

setup(name='theslasher',
      version=version,
      description="removes trailing slashes",
      long_description="""
""",
      classifiers=[], # Get strings from http://www.python.org/pypi?%3Aaction=list_classifiers
      author='Jeff Hammel',
      author_email='k0scist@gmail.com',
      url='http://k0s.org',
      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 = theslasher.factory:factory
      """,
      )