1'''
2Wrappers for the "AddressBook" framework on MacOS X. The Address Book is
3a centralized database for contact and other information for people. Appliations
4that make use of the AddressBook framework all use the same database.
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'''
11
12from pyobjc_setup import setup
13
14setup(
15    name='pyobjc-framework-AddressBook',
16    version="2.3.2a0",
17    description = "Wrappers for the framework AddressBook on Mac OS X",
18    packages = [ "AddressBook" ],
19    install_requires = [
20        'pyobjc-core>=2.3.2a0',
21        'pyobjc-framework-Cocoa>=2.3.2a0',
22    ],
23)
24