1'''
2Wrappers for the "LaunchServices" framework on MacOSX. The API's in this
3framework enable applications to open other applictions or their document
4files, simularly to how the Dock or Finder do that.
5
6A number of tasks that can be implemented using this framework:
7
8 * Launch or activate applications
9
10 * Open documents in other applications
11
12 * Identify the preferred application for opening a document
13
14 * Register information about the kinds of documents an application
15   can open (UTI's)
16
17 * Obtain information for showing a document (display name, icon, ...)
18
19 * Maintain and update the contents of the Recent Items menu.
20
21These wrappers don't include documentation, please check Apple's documention
22for information on how to use this framework and PyObjC's documentation
23for general tips and tricks regarding the translation between Python
24and (Objective-)C frameworks
25
26NOTE: This wrapper is not complete, this will change in a future version.
27'''
28from pyobjc_setup import setup
29
30setup(
31    name='pyobjc-framework-LaunchServices',
32    version="2.3.2a0",
33    description = "Wrappers for the framework LaunchServices on Mac OS X",
34    packages = [ "LaunchServices" ],
35    install_requires = [
36        'pyobjc-core>=2.3.2a0',
37        'pyobjc-framework-Cocoa>=2.3.2a0',
38    ],
39)
40