1'''
2Wrappers for the "XgridFoundation" framework on MacOSX. This framework
3supports the development of applications that monitor or control jobs
4processed by Xgrid clusters.
5
6These wrappers don't include documentation, please check Apple's documention
7for information on how to use this framework and PyObjC's documentation
8for general tips and tricks regarding the translation between Python
9and (Objective-)C frameworks
10'''
11import ez_setup
12ez_setup.use_setuptools()
13
14from setuptools import setup
15try:
16    from PyObjCMetaData.commands import extra_cmdclass, extra_options
17except ImportError:
18    extra_cmdclass = {}
19    extra_options = lambda name: {}
20
21setup(
22    name='pyobjc-framework-XgridFoundation',
23    version='2.2b3',
24    description = "Wrappers for the framework XgridFoundation on Mac OS X",
25    long_description = __doc__,
26    author='Ronald Oussoren',
27    author_email='pyobjc-dev@lists.sourceforge.net',
28    url='http://pyobjc.sourceforge.net',
29    platforms = [ "MacOS X" ],
30    packages = [ "XgridFoundation" ],
31    package_dir = { '': 'Lib' },
32    install_requires = [
33        'pyobjc-core>=2.2b3',
34        'pyobjc-framework-Cocoa>=2.2b3',
35    ],
36    package_data = {
37        '': ['*.bridgesupport']
38    },
39    test_suite='PyObjCTest',
40    cmdclass = extra_cmdclass,
41    options = extra_options('XgridFoundation'),
42    zip_safe = True,
43)
44