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'''
12import ez_setup
13ez_setup.use_setuptools()
14
15from setuptools import setup
16try:
17    from PyObjCMetaData.commands import extra_cmdclass, extra_options
18except ImportError:
19    extra_cmdclass = {}
20    extra_options = lambda name: {}
21
22setup(
23    name='pyobjc-framework-InstallerPlugins',
24    version='2.2b3',
25    description = "Wrappers for the framework InstallerPlugins on Mac OS X",
26    long_description = __doc__,
27    author='Ronald Oussoren',
28    author_email='pyobjc-dev@lists.sourceforge.net',
29    url='http://pyobjc.sourceforge.net',
30    platforms = [ "MacOS X" ],
31    packages = [ "InstallerPlugins" ],
32    package_dir = { '': 'Lib' },
33    install_requires = [
34        'pyobjc-core>=2.2b3',
35        'pyobjc-framework-Cocoa>=2.2b3',
36    ],
37    package_data = {
38        '': ['*.bridgesupport']
39    },
40    test_suite='PyObjCTest',
41    cmdclass = extra_cmdclass,
42    options = extra_options('InstallerPlugins'),
43    zip_safe = True,
44)
45