1'''
2Wrappers for the "InstallerPlugins" framework on MacOSX. This framework
3allows you to develop plugin's for the "Installer.app" application, and those
4make it possible to add new functionality to ".pkg" and ".mpkg" installers
5on MacOSX.
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 *
13
14setup(
15    name='pyobjc-framework-InstallerPlugins',
16    version="2.3.2a0",
17    description = "Wrappers for the framework InstallerPlugins on Mac OS X",
18    packages = [ "InstallerPlugins" ],
19    install_requires = [
20        'pyobjc-core>=2.3.2a0',
21        'pyobjc-framework-Cocoa>=2.3.2a0',
22    ],
23)
24