Package turbomail :: Module release
[hide private]
[frames] | no frames]

Source Code for Module turbomail.release

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