Code Coverage for nltk.internals

100% Covered by Tests!

# Natural Language Toolkit (NLTK)
#
# Copyright (C) 2001-2008 NLTK Project
# Authors: Steven Bird <[email protected]>
#          Edward Loper <[email protected]>
# URL:     http://nltk.org/
# For license information, see LICENSE.TXT

"""
NLTK -- the Natural Language Toolkit -- is a suite of open source
Python modules, data sets and tutorials supporting research and
development in natural language processing.

@version: 0.9.5
"""

##//////////////////////////////////////////////////////
##  Metadata
##//////////////////////////////////////////////////////

# Version.  For each new release, the version number should be updated
# here and in the Epydoc comment (above).
__version__ = "0.9.5"

# Copyright notice
__copyright__ = """\
Copyright (C) 2001-2008 NLTK Project.

Distributed and Licensed under provisions of the GNU Public
License, which is included by reference.
"""

__license__ = "GNU Public License"
# Description of the toolkit, keywords, and the project's primary URL.
__longdescr__ = """\
The Natural Langauge Toolkit (NLTK) is a Python package for
processing natural language text.  NLTK requires Python 2.4 or higher."""
__keywords__ = ['NLP', 'CL', 'natural language processing',
                'computational linguistics', 'parsing', 'tagging',
                'tokenizing', 'syntax', 'linguistics', 'language',
                'natural language']
__url__ = "http://nltk.org/"

# Maintainer, contributors, etc.
__maintainer__ = "Steven Bird, Edward Loper, Ewan Klein"
__maintainer_email__ = "[email protected]"
__author__ = __maintainer__
__author_email__ = __maintainer_email__

# Import top-level functionality into top-level namespace

from compat import *
from cfg import *
from containers import *
from decorators import decorator, memoize
from evaluate import *
from featstruct import *
from olac import *
from probability import *
from text import *
from tree import *
from util import *
from yamltags import *

import data

# Processing packages -- these all define __all__ carefully.
from tokenize import *
from tag import *
from parse import *
from chunk import *
from stem import *
from classify import *
from model import *
from misc import *

from internals import config_java

import chat, chunk, corpus, draw, parse, sem, stem, tag, tokenize, wordnet