1'''
2Wrappers for the "Collaboration" framework in MacOSX 10.5 or later. The
3Collaboration framework provides access to identities, and manages
4user interface elements for selecting identities.
5
6These wrappers don't include documentation, please check Apple's documention
7for information on how to use this framework and PyObjC's documentation
8for general tips and tricks regarding the translation between Python
9and (Objective-)C frameworks
10'''
11from pyobjc_setup import setup
12setup(
13    min_os_level='10.5',
14    name='pyobjc-framework-Collaboration',
15    version="2.3.2a0",
16    description = "Wrappers for the framework Collaboration on Mac OS X",
17    packages = [ "Collaboration" ],
18    install_requires = [
19        'pyobjc-core>=2.3.2a0',
20        'pyobjc-framework-Cocoa>=2.3.2a0',
21    ],
22)
23