annotate 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
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,
3
Jeff Hammel <k0scist@gmail.com>
parents: 2
diff changeset
20 install_requires=[],
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
21 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
22 # -*- 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
23 [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
24 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
25
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 [email.dispatchers]
1
2c76525ce80b demo works: can be used to extract images to a directory
k0s <k0scist@gmail.com>
parents: 0
diff changeset
27 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
28 """,
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 )