view setup.py @ 3:99532babf06f default tip

update
author Jeff Hammel <k0scist@gmail.com>
date Tue, 03 Nov 2020 08:41:48 -0800
parents 5559e0734c8c
children
line wrap: on
line source

from setuptools import setup, find_packages
import sys, os

version = '0.1'

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=[],
      entry_points="""
      # -*- Entry points: -*-
      [console_scripts]
      emaildispatcher = emaildispatcher.main:main

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