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