mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-03 00:12:54 +01:00
16a151ae19
GitOrigin-RevId: 55a38effd769ab15a3e0893cac84754ffb1de5a0
26 lines
672 B
Python
26 lines
672 B
Python
load("@pip_modules//: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",
|
|
requirement("aiosumma"),
|
|
],
|
|
)
|