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'''
15from pyobjc_setup import setup
16
17setup(
18    name='pyobjc-framework-SyncServices',
19    version="2.3.2a0",
20    description = "Wrappers for the framework SyncServices on Mac OS X",
21    packages = [ "SyncServices" ],
22    install_requires = [
23        'pyobjc-core>=2.3.2a0',
24        'pyobjc-framework-Cocoa>=2.3.2a0',
25        'pyobjc-framework-CoreData>=2.3.2a0',
26    ],
27)
28