1'''
2Wrappers for the "PreferencePanes" framework on MacOSX. This framework allows
3you to write Preference Panes for the "System Preferences" application.
4
5These wrappers don't include documentation, please check Apple's documention
6for information on how to use this framework and PyObjC's documentation
7for general tips and tricks regarding the translation between Python
8and (Objective-)C frameworks
9'''
10from pyobjc_setup import *
11setup(
12    name='pyobjc-framework-PreferencePanes',
13    version="2.3.2a0",
14    description = "Wrappers for the framework PreferencePanes on Mac OS X",
15    packages = [ "PreferencePanes" ],
16    install_requires = [
17        'pyobjc-core>=2.3.2a0',
18        'pyobjc-framework-Cocoa>=2.3.2a0',
19    ],
20)
21