1'''
2Wrappers for the "Message" framework on MacOSX. This framework contains a
3number of utilities for sending e-mail.
4
5These wrappers don't include documentation, please check Apple's documention
6for information on how to use this framework and PyObjC's documentation
7for general tips and tricks regarding the translation between Python
8and (Objective-)C frameworks
9'''
10from pyobjc_setup import setup
11setup(
12    name='pyobjc-framework-Message',
13    version="2.3.2a0",
14    description = "Wrappers for the framework Message on Mac OS X",
15    packages = [ "Message" ],
16    install_requires = [
17        'pyobjc-core>=2.3.2a0',
18        'pyobjc-framework-Cocoa>=2.3.2a0',
19    ],
20)
21