mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-11 20:27:50 +01:00
fff80cd4e7
- fix(nexus): Preparing configs to be published - feat(nexus): Various fixes for opening left sources - fix(nexus): Fine-tune versions 1 internal commit(s) GitOrigin-RevId: 6c834cd3f4f5f18109a159a73503700dac63b0bb
17 lines
445 B
Python
17 lines
445 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "query_extensionner",
|
|
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"),
|
|
],
|
|
)
|