mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 16:32:54 +01:00
8472f27ec5
GitOrigin-RevId: ddf02e70d2827c048db49b687ebbcdcc67807ca6
27 lines
713 B
Python
27 lines
713 B
Python
load("@pip_modules_external//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "actions",
|
|
srcs = glob(
|
|
["**/*.py"],
|
|
exclude = ["tests/**"],
|
|
),
|
|
imports = ["."],
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("beautifulsoup4"),
|
|
requirement("lxml"),
|
|
requirement("pypika"),
|
|
requirement("numpy"),
|
|
requirement("aiocrossref"),
|
|
requirement("aiolibgen"),
|
|
"//library/aiopostgres",
|
|
"//nexus/models/proto:models_proto_py",
|
|
"//nexus/nlptools",
|
|
"//nexus/summa/schema",
|
|
requirement("aiosumma"),
|
|
],
|
|
)
|