2021-01-29 09:18:22 +01:00
|
|
|
load("@pip_modules//:requirements.bzl", "requirement")
|
2021-01-04 09:35:31 +01:00
|
|
|
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"),
|
|
|
|
],
|
|
|
|
)
|