mirror of
https://github.com/explosion/spaCy.git
synced 2024-11-14 05:37:03 +03:00
Add Hebrew to init and setup.py
This commit is contained in:
parent
21dfe9edbe
commit
7e4befec88
1
setup.py
1
setup.py
|
@ -35,6 +35,7 @@ PACKAGES = [
|
||||||
'spacy.sv',
|
'spacy.sv',
|
||||||
'spacy.fi',
|
'spacy.fi',
|
||||||
'spacy.bn',
|
'spacy.bn',
|
||||||
|
'spacy.he',
|
||||||
'spacy.en.lemmatizer',
|
'spacy.en.lemmatizer',
|
||||||
'spacy.language_data',
|
'spacy.language_data',
|
||||||
'spacy.serialize',
|
'spacy.serialize',
|
||||||
|
|
|
@ -19,6 +19,7 @@ from . import nl
|
||||||
from . import sv
|
from . import sv
|
||||||
from . import fi
|
from . import fi
|
||||||
from . import bn
|
from . import bn
|
||||||
|
from . import he
|
||||||
|
|
||||||
from .about import *
|
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(sv.Swedish.lang, sv.Swedish)
|
||||||
set_lang_class(fi.Finnish.lang, fi.Finnish)
|
set_lang_class(fi.Finnish.lang, fi.Finnish)
|
||||||
set_lang_class(bn.Bengali.lang, bn.Bengali)
|
set_lang_class(bn.Bengali.lang, bn.Bengali)
|
||||||
|
set_lang_class(he.Hebrew.lang, he.Hebrew)
|
||||||
|
|
||||||
|
|
||||||
def load(name, **overrides):
|
def load(name, **overrides):
|
||||||
|
|
Loading…
Reference in New Issue
Block a user