annotate setup.py @ 2:5559e0734c8c

discriminate on From address; give a real version
author k0s <k0scist@gmail.com>
date Mon, 18 Jan 2010 15:37:59 -0500
parents 2c76525ce80b
children 99532babf06f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
1 from setuptools import setup, find_packages
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
2 import sys, os
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
3
2
5559e0734c8c discriminate on From address; give a real version
k0s <k0scist@gmail.com>
parents: 1
diff changeset
4 version = '0.1'
0
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
5
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
6 setup(name='emaildispatcher',
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
7 version=version,
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
8 description='dispatches email to handlers',
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
9 long_description="""\
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
10 """,
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
12 keywords='',
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
13 author='Jeff Hammel',
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
14 author_email='k0scist@gmail.com',
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
15 url='http://k0s.org',
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
16 license='',
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
18 include_package_data=True,
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
19 zip_safe=False,
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
20 install_requires=[
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
21 # -*- Extra requirements: -*-
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
22 ],
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
23 entry_points="""
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
24 # -*- Entry points: -*-
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
25 [console_scripts]
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
26 emaildispatcher = emaildispatcher.main:main
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
27
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
28 [email.dispatchers]
1
2c76525ce80b demo works: can be used to extract images to a directory
k0s <k0scist@gmail.com>
parents: 0
diff changeset
29 extract_images = emaildispatcher.handlers:Images
0
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
30 """,
bbcc528508f1 initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
k0s <k0scist@gmail.com>
parents:
diff changeset
31 )