Show
Ignore:
Timestamp:
11/07/07 01:11:02 (1 year ago)
Author:
amcgregor
Message:

Updated meta information.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/3.0/turbomail/release.py

    r52 r63  
    11# encoding: utf-8 
    22 
    3 """Release information about the Turbo-Mail mail queue.""" 
     3"""Release information about TurboMail.""" 
     4 
     5__version__ = "$Revision: 1 $" 
    46 
    57name = "TurboMail" 
    68version = "3.0" 
     9api_version = "1.0" 
    710description = "TurboMail is a multi-threaded mail delivery subsystem and MIME message generation framework for Python." 
    8 long_description = "TurboMail is a TurboGears extension, meaning that it starts up and shuts down alongside any TurboGears applications you write, in the same way that visit tracking and identity do. TurboMail uses built-in Python modules for SMTP communication and MIME e-mail creation, but greatly simplifies these tasks by performing the grunt-work for you. Additionally, TurboMail is multi-threaded, allowing for single or batch enqueueing and background delivery of mail." 
     11long_description = """TurboMail 3 offers: 
     12 
     13* Simplified creation of complex messages, including rich text, attachments, and more. 
     14* Modular delivery managers including the blocking immediate manager, or the two threading managers: on-demand, and polling. 
     15* Modular back-ends including SMTP, Sendmail, or on-disk. 
     16* Easier debugging when using the debug back-end in concert with the immediate manager. 
     17* A plugin architecture with a sample plugin for altered message encoding 
     18* S/MIME encryption and digital signatures. 
     19* Automatic integration into TurboGears 1.x. 
     20 
     21Python includes several standard packages for handling e-mail. These libraries are independent of each-other, their documentation is hard-to-follow, and their examples are hardly real-world. TurboMail ties these dispersant elements together with an elegant and extensible API, freeing you (the developer) from drudge-work, strained eyes, and loss of hair, even for the most complicated use-cases. 
     22""" 
    923author = "Alice Bevan-McGregor" 
    1024email = "alice+turbomail@gothcandy.com"