view setup.py @ 4:5258325a496a

move transformers getting method to a standalone function
author k0s <k0scist@gmail.com>
date Sun, 17 Jan 2010 19:47:32 -0500
parents 1a267297f779
children 349a80ce9def
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = "0.1.1"

setup(name='contentransformer',
      version=version,
      description="transform e.g. file data based on type to be served TTW",
      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',
         'docutils'
      ],
      entry_points="""
      # -*- Entry points: -*-
      [paste.app_factory]
      main = contenttransformer.factory:factory

      [content_transformers]
      Graphviz = contenttransformer.transformers:Graphviz
      ReST = contenttransformer.transformers:RestructuredText
      """,
      )