mirror of https://github.com/explosion/spaCy.git
19 lines
408 B
Python
19 lines
408 B
Python
from ...language import Language, BaseDefaults
|
|
from .tokenizer_exceptions import TOKENIZER_EXCEPTIONS
|
|
from .stop_words import STOP_WORDS
|
|
from .lex_attrs import LEX_ATTRS
|
|
|
|
|
|
class LatinDefaults(BaseDefaults):
|
|
tokenizer_exceptions = TOKENIZER_EXCEPTIONS
|
|
stop_words = STOP_WORDS
|
|
lex_attr_getters = LEX_ATTRS
|
|
|
|
|
|
class Latin(Language):
|
|
lang = "la"
|
|
Defaults = LatinDefaults
|
|
|
|
|
|
__all__ = ["Latin"]
|