from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS from .stop_words import STOP_WORDS from .lex_attrs import LEX_ATTRS from ...language import Language class AncientGreekDefaults(Language.Defaults): tokenizer_exceptions = TOKENIZER_EXCEPTIONS lex_attr_getters = LEX_ATTRS stop_words = STOP_WORDS class AncientGreek(Language): lang = "grc" Defaults = AncientGreekDefaults __all__ = ["AncientGreek"]