view setup.py @ 1:aa491070ccf3

now works, just doesnt do anything, i dont think
author k0s <k0scist@gmail.com>
date Wed, 13 Jan 2010 23:58:13 -0500
parents 29805d442afc
children 1a267297f779
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = "0.0"

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
      """,
      )