1'''
2Wrappers for the framework "LatentSemanticMapping" on MacOSX 10.5 or later.
3
4The Latent Semantic Mapping framework supports the classification of text and other token-based content into developer-defined categories.
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
11NOTE: Apple's documentation for this framework is very minimal at the moment,
12making it very hard to actually use the framework.
13'''
14import ez_setup
15ez_setup.use_setuptools()
16
17from setuptools import setup
18try:
19    from PyObjCMetaData.commands import extra_cmdclass, extra_options
20except ImportError:
21    extra_cmdclass = {}
22    extra_options = lambda name: {}
23
24setup(
25    name='pyobjc-framework-LatentSemanticMapping',
26    version='2.2b3',
27    description = "Wrappers for the framework LatentSemanticMapping on Mac OS X",
28    long_description = __doc__,
29    author='Ronald Oussoren',
30    author_email='pyobjc-dev@lists.sourceforge.net',
31    url='http://pyobjc.sourceforge.net',
32    platforms = [ "MacOS X" ],
33    packages = [ "LatentSemanticMapping" ],
34    package_dir = { '': 'Lib' },
35    install_requires = [
36        'pyobjc-core>=2.2b3',
37        'pyobjc-framework-Cocoa>=2.2b3',
38    ],
39    package_data = {
40        '': ['*.bridgesupport']
41    },
42    test_suite='PyObjCTest',
43    cmdclass = extra_cmdclass,
44    options = extra_options('LatentSemanticMapping'),
45    zip_safe = True,
46)
47