1'''
2Wrappers for the "DictionaryServices" framework on MacOSX 10.5 or later.
3
4Dictionary Services lets you create your own custom dictionaries that users
5can access through the Dictionary application. You also use these services to
6access dictionaries programatically and to support user access to dictionary
7look-up through a contextual menu.
8
9These wrappers don't include documentation, please check Apple's documention
10for information on how to use this framework and PyObjC's documentation
11for general tips and tricks regarding the translation between Python
12and (Objective-)C frameworks
13'''
14from pyobjc_setup import setup
15
16setup(
17    min_os_level='10.5',
18    name='pyobjc-framework-DictionaryServices',
19    version="2.3.2a0",
20    description = "Wrappers for the framework DictionaryServices on Mac OS X",
21    packages = [ "DictionaryServices" ],
22    install_requires = [
23        'pyobjc-core>=2.3.2a0',
24        'pyobjc-framework-Cocoa>=2.3.2a0',
25    ],
26)
27