1'''
2Wrappers for the "ScreenSaver" framework on MacOSX. This frameworks allows
3you to write custom screensaver modules.
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 setup, Extension
11
12setup(
13    name='pyobjc-framework-ScreenSaver',
14    version="2.3.2a0",
15    description = "Wrappers for the framework ScreenSaver on Mac OS X",
16    packages = [ "ScreenSaver" ],
17    install_requires = [
18        'pyobjc-core>=2.3.2a0',
19        'pyobjc-framework-Cocoa>=2.3.2a0',
20    ],
21    ext_modules = [
22        Extension('ScreenSaver._inlines',
23            [ 'Modules/_ScreenSaver_inlines.m' ],
24            extra_link_args=['-framework', 'ScreenSaver']),
25    ],
26)
27