view setup.py @ 1:2c76525ce80b

demo works: can be used to extract images to a directory
author k0s <k0scist@gmail.com>
date Thu, 31 Dec 2009 00:26:33 -0500
parents bbcc528508f1
children 5559e0734c8c
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.0'

setup(name='emaildispatcher',
      version=version,
      description='dispatches email to handlers',
      long_description="""\
""",
      classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
      keywords='',
      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: -*-
      ],
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      emaildispatcher = emaildispatcher.main:main

      [email.dispatchers]
      extract_images = emaildispatcher.handlers:Images
      """,
      )