1'''
2Wrappers for the "CoreText" framework on MacOSX 10.5 or later. Core Text is an
3advanced, low-level technology for laying out text and handling fonts. It is
4designed for high performance and ease of use.
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
11NEWS
12====
13
142.4
15---
16
17* The wrappers now cover all useful functionality (see the documentation
18  for the exceptions)
19'''
20from pyobjc_setup import setup, Extension
21
22setup(
23    min_os_level='10.5',
24    name='pyobjc-framework-CoreText',
25    version="2.3.2a0",
26    description = "Wrappers for the framework CoreText on Mac OS X",
27    packages = [ "CoreText" ],
28    ext_modules = [
29            Extension('CoreText._manual',
30                [ 'Modules/_manual.m' ],
31                extra_link_args=['-framework', 'CoreServices'],
32            ),
33    ],
34    install_requires = [
35        'pyobjc-core>=2.3.2a0',
36        'pyobjc-framework-Cocoa>=2.3.2a0',
37        'pyobjc-framework-Quartz>=2.3.2a0',
38    ],
39)
40