root / trunk / turbomail / release.py

Revision 118, 1.4 kB (checked in by fs, 4 weeks ago)

Some reformatting of release.py, updated some description text

  • Property svn:keywords set to Revision
Line 
1# encoding: utf-8
2"""Release information about TurboMail."""
3
4__version__ = "$Revision$"
5
6name = "TurboMail"
7version = "3.0"
8description = "TurboMail is a mail delivery subsystem and MIME message generation framework for Python."
9long_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
21Python includes several standard packages for handling e-mail. These libraries
22are independent of each-other, their documentation is hard-to-follow, and their
23examples are hardly real-world. TurboMail ties these dispersant elements
24together with an elegant and extensible API, freeing you (the developer) from
25drudge-work, strained eyes, and loss of hair, even for the most complicated
26use-cases.
27"""
28author = "Alice Bevan-McGregor"
29email = "alice+turbomail@gothcandy.com"
30url = "http://www.python-turbomail.org/"
31download_url = "http://cheeseshop.python.org/pypi/TurboMail/"
32copyright = "© 2007-2008 Alice Bevan-McGregor, and contributors"
33license="MIT"
Note: See TracBrowser for help on using the browser.