mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-21 09:07:46 +01:00
8472f27ec5
GitOrigin-RevId: ddf02e70d2827c048db49b687ebbcdcc67807ca6
21 lines
510 B
Python
21 lines
510 B
Python
load("@pip_modules_external//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "nlptools",
|
|
srcs = glob(
|
|
["**/*.py"],
|
|
exclude = ["tests/**"],
|
|
),
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("DAWG"),
|
|
requirement("emoji"),
|
|
requirement("lemminflect"),
|
|
requirement("pycld3"),
|
|
requirement("pymorphy2"),
|
|
requirement("spacy"),
|
|
],
|
|
)
|