Mercurial > hg > emaildispatcher
comparison setup.py @ 0:bbcc528508f1
initial stub for emaildispatcher framework; ultimately, this should be written in lamson but dont have the patience to learn it today
| author | k0s <k0scist@gmail.com> |
|---|---|
| date | Wed, 30 Dec 2009 22:46:56 -0500 |
| parents | |
| children | 2c76525ce80b |
comparison
equal
deleted
inserted
replaced
| -1:000000000000 | 0:bbcc528508f1 |
|---|---|
| 1 from setuptools import setup, find_packages | |
| 2 import sys, os | |
| 3 | |
| 4 version = '0.0' | |
| 5 | |
| 6 setup(name='emaildispatcher', | |
| 7 version=version, | |
| 8 description='dispatches email to handlers', | |
| 9 long_description="""\ | |
| 10 """, | |
| 11 classifiers=[], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers | |
| 12 keywords='', | |
| 13 author='Jeff Hammel', | |
| 14 author_email='k0scist@gmail.com', | |
| 15 url='http://k0s.org', | |
| 16 license='', | |
| 17 packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), | |
| 18 include_package_data=True, | |
| 19 zip_safe=False, | |
| 20 install_requires=[ | |
| 21 # -*- Extra requirements: -*- | |
| 22 ], | |
| 23 entry_points=""" | |
| 24 # -*- Entry points: -*- | |
| 25 [console_scripts] | |
| 26 emaildispatcher = emaildispatcher.main:main | |
| 27 | |
| 28 [email.dispatchers] | |
| 29 extract_images = emaildispatcher.dispatchers:Images | |
| 30 """, | |
| 31 ) |
