1'''
2Wrappers for the "SyncServices" framework on MacOSX.
3
4Sync Services is a framework containing all the components you need
5to sync your applications and devices. If your application uses
6Sync Services, user data can be synced with other applications and
7devices on the same computer, or other computers over the network via
8MobileMe.
9
10These wrappers don't include documentation, please check Apple's documention
11for information on how to use this framework and PyObjC's documentation
12for general tips and tricks regarding the translation between Python
13and (Objective-)C frameworks
14'''
15import ez_setup
16ez_setup.use_setuptools()
17
18from setuptools import setup
19try:
20    from PyObjCMetaData.commands import extra_cmdclass, extra_options
21except ImportError:
22    extra_cmdclass = {}
23    extra_options = lambda name: {}
24
25setup(
26    name='pyobjc-framework-SyncServices',
27    version='2.2b3',
28    description = "Wrappers for the framework SyncServices on Mac OS X",
29    long_description = __doc__,
30    author='Ronald Oussoren',
31    author_email='pyobjc-dev@lists.sourceforge.net',
32    url='http://pyobjc.sourceforge.net',
33    platforms = [ "MacOS X" ],
34    packages = [ "SyncServices" ],
35    package_dir = { '': 'Lib' },
36    install_requires = [
37        'pyobjc-core>=2.2b3',
38        'pyobjc-framework-Cocoa>=2.2b3',
39        'pyobjc-framework-CoreData>=2.2b3',
40    ],
41    package_data = {
42        '': ['*.bridgesupport']
43    },
44    test_suite='PyObjCTest',
45    cmdclass = extra_cmdclass,
46    options = extra_options('SyncServices'),
47    zip_safe = True,
48)
49