Add Hebrew to init and setup.py

This commit is contained in:
ines 2017-03-29 10:34:57 +02:00
parent 21dfe9edbe
commit 7e4befec88
2 changed files with 3 additions and 0 deletions

View File

@ -35,6 +35,7 @@ PACKAGES = [
'spacy.sv',
'spacy.fi',
'spacy.bn',
'spacy.he',
'spacy.en.lemmatizer',
'spacy.language_data',
'spacy.serialize',

View File

@ -19,6 +19,7 @@ from . import nl
from . import sv
from . import fi
from . import bn
from . import he
from .about import *
@ -35,6 +36,7 @@ set_lang_class(nl.Dutch.lang, nl.Dutch)
set_lang_class(sv.Swedish.lang, sv.Swedish)
set_lang_class(fi.Finnish.lang, fi.Finnish)
set_lang_class(bn.Bengali.lang, bn.Bengali)
set_lang_class(he.Hebrew.lang, he.Hebrew)
def load(name, **overrides):