File: __init__.py

package info (click to toggle)
python-wordaxe 0.3.2-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,228 kB
  • ctags: 786
  • sloc: python: 9,814; makefile: 5
file content (21 lines) | stat: -rw-r--r-- 767 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# -*- coding: iso-8859-1 -*-

__license__="""
   Copyright 2004-2008 Henning von Bargen (henning.vonbargen arcor.de)
   This software is dual-licenced under the Apache 2.0 and the
   2-clauses BSD license. For details, see license.txt
"""

__version__=''' $Id: __init__.py,v 1.2 2004/05/31 22:22:12 hvbargen Exp $ '''
__doc__='Hyphenation support using different algorithms'

__all__ = ["BaseHyphenator", "DCWHyphenator", "PyHnjHyphenator", "SHY", "HyphenationPoint", "HyphenatedWord"]

from wordaxe.hyphen import SHY, HyphenationPoint, HyphenatedWord, Hyphenator, Cached

# This is meant as a registry for Hyphenators.
# if you want to use a Hyphenator A for language B,
# just set hyphRegistry[A]=B
hyphRegistry = {}

version = "wordaxe 0.3.2"