mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-08 09:46:01 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
17 lines
443 B
Python
17 lines
443 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "query_extensions",
|
|
srcs = glob(["**/*.py"]),
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("en_core_web_sm"),
|
|
requirement("ply"),
|
|
requirement("izihawa_types"),
|
|
"//nexus/nlptools",
|
|
requirement("izihawa_utils"),
|
|
],
|
|
)
|