1'''
2Wrappers for the "ScriptingBrige" framework on MacOSX 10.5 or later. This
3framework provides an easy way to use the scripting functionality of
4applications ("AppleScript") from Cocoa applications.
5
6The functionality of this framework is comparable to that off "appscript",
7although the latter is better tuned for use in Python applications and is
8available on MacOSX 10.4 as well.
9
10These wrappers don't include documentation, please check Apple's documention
11for information on how to use this framework and PyObjC's documentation
12for general tips and tricks regarding the translation between Python
13and (Objective-)C frameworks
14'''
15from pyobjc_setup import *
16
17setup(
18    min_os_level='10.5',
19    name='pyobjc-framework-ScriptingBridge',
20    version="2.3.2a0",
21    description = "Wrappers for the framework ScriptingBridge on Mac OS X",
22    packages = [ "ScriptingBridge" ],
23    install_requires = [
24        'pyobjc-core>=2.3.2a0',
25        'pyobjc-framework-Cocoa>=2.3.2a0',
26    ],
27)
28