Mercurial > hg > emaildispatcher
annotate 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 |
| 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 |
|
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
|
4 version = '0.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] |
|
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
|
29 extract_images = emaildispatcher.dispatchers:Images |
|
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 ) |
