1'''
2Wrappers for the 'OpenDirectory' and 'CFOpenDirectory' frameworks on
3MacOSX 10.6 and later.
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
11
12setup(
13    min_os_level='10.6',
14    name='pyobjc-framework-OpenDirectory',
15    version="2.5.1",
16    description = "Wrappers for the framework OpenDirectory on Mac OS X",
17    packages = [ "OpenDirectory", "CFOpenDirectory" ],
18    setup_requires = [
19        'pyobjc-core>=2.5.1',
20    ],
21    install_requires = [
22        'pyobjc-core>=2.5.1',
23        'pyobjc-framework-Cocoa>=2.5.1',
24    ],
25)
26