1'''
2Wrappers for the "Automator" framework on MacOSX. The Automator framework
3supports the development of actions for the Automator application, as well
4as the ability to run a workflow in developer applications. An action is
5a bundle that, when loaded and run, performs a specific task.
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-Automator',
16    version="2.3.2a0",
17    description = "Wrappers for the framework Automator on Mac OS X",
18    packages = [ "Automator" ],
19    install_requires = [
20        'pyobjc-core>=2.3.2a0',
21        'pyobjc-framework-Cocoa>=2.3.2a0',
22    ],
23)
24