1'''
2Wrappers for the "WebKit" and "JavaScriptCore" frameworks on MacOSX. The
3WebKit framework contains the views and support classes for creating a
4browser. The JavaScriptCore framework implements a JavaScript interpreter.
5
6These wrappers don't include documentation, please check Apple's documention
7for information on how to use these frameworks and PyObjC's documentation
8for general tips and tricks regarding the translation between Python
9and (Objective-)C frameworks
10'''
11from pyobjc_setup import setup
12
13setup(
14    name='pyobjc-framework-WebKit',
15    version="2.3.2a0",
16    description = "Wrappers for the framework WebKit on Mac OS X",
17    packages = [ "WebKit", "JavaScriptCore" ],
18    install_requires = [
19        'pyobjc-core>=2.3.2a0',
20        'pyobjc-framework-Cocoa>=2.3.2a0',
21    ],
22)
23