| 1 | |
|---|
| 2 | """Release information about TurboMail.""" |
|---|
| 3 | |
|---|
| 4 | __version__ = "$Revision$" |
|---|
| 5 | |
|---|
| 6 | name = "TurboMail" |
|---|
| 7 | version = "3.0" |
|---|
| 8 | description = "TurboMail is a mail delivery subsystem and MIME message generation framework for Python." |
|---|
| 9 | long_description = """TurboMail 3 offers: |
|---|
| 10 | |
|---|
| 11 | * Simplified creation of complex messages, including rich text, attachments, |
|---|
| 12 | and more. |
|---|
| 13 | * Modular delivery managers including the blocking immediate manager and the |
|---|
| 14 | threaded on demand manager. |
|---|
| 15 | * Modular back-ends ('transports') including SMTP and in-memory (debug) |
|---|
| 16 | * Easier debugging when using the debug back-end in concert with the immediate |
|---|
| 17 | manager. |
|---|
| 18 | * A plugin architecture with a sample plugin for altered message encoding. |
|---|
| 19 | * Automatic integration into TurboGears 1.x. |
|---|
| 20 | |
|---|
| 21 | Python includes several standard packages for handling e-mail. These libraries |
|---|
| 22 | are independent of each-other, their documentation is hard-to-follow, and their |
|---|
| 23 | examples are hardly real-world. TurboMail ties these dispersant elements |
|---|
| 24 | together with an elegant and extensible API, freeing you (the developer) from |
|---|
| 25 | drudge-work, strained eyes, and loss of hair, even for the most complicated |
|---|
| 26 | use-cases. |
|---|
| 27 | """ |
|---|
| 28 | author = "Alice Bevan-McGregor" |
|---|
| 29 | email = "alice+turbomail@gothcandy.com" |
|---|
| 30 | url = "http://www.python-turbomail.org/" |
|---|
| 31 | download_url = "http://cheeseshop.python.org/pypi/TurboMail/" |
|---|
| 32 | copyright = "© 2007-2008 Alice Bevan-McGregor, and contributors" |
|---|
| 33 | license="MIT" |
|---|