1'''
2Wrappers for framework 'AppleScriptObjC' on MacOSX 10.6. This framework is
3not useful for most users, it provides additional functionality for AppleScript
4based application bundles.
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'''
11
12from pyobjc_setup import setup
13
14setup(
15    min_os_level='10.6',
16    name='pyobjc-framework-AppleScriptObjC',
17    version="2.5.1",
18    description = "Wrappers for the framework AppleScriptObjC on Mac OS X",
19    packages = [ "AppleScriptObjC" ],
20    setup_requires = [
21        'pyobjc-core>=2.5.1',
22    ],
23    install_requires = [
24        'pyobjc-core>=2.5.1',
25        'pyobjc-framework-Cocoa>=2.5.1',
26    ],
27)
28