1'''
2Wrappers for the "QTKit" framework on MacOSX.  QTKit is an modern,
3object-oriented framework for working with QuickTime media in Cocoa
4applications, and is a replacement for the older Carbon-based Quicktime
5framework.
6
7These wrappers don't include documentation, please check Apple's documention
8for information on how to use this framework and PyObjC's documentation
9for general tips and tricks regarding the translation between Python
10and (Objective-)C frameworks
11'''
12from pyobjc_setup import setup
13
14setup(
15    name='pyobjc-framework-QTKit',
16    version="2.3.2a0",
17    description = "Wrappers for the framework QTKit on Mac OS X",
18    packages = [ "QTKit" ],
19    install_requires = [
20        'pyobjc-core>=2.3.2a0',
21        'pyobjc-framework-Cocoa>=2.3.2a0',
22        'pyobjc-framework-Quartz>=2.3.2a0',
23    ],
24)
25