mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-04 17:02:53 +01:00
681817ceae
GitOrigin-RevId: 83514338be1d662518bab9fe5ab6eefef98f229f
18 lines
518 B
Python
18 lines
518 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "aioclient",
|
|
srcs = glob(["**/*.py"]),
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("grpcio"),
|
|
requirement("lru-dict"),
|
|
requirement("tenacity"),
|
|
requirement("aiokit"),
|
|
"//nexus/meta_api/proto:meta_api_grpc_py",
|
|
"//nexus/meta_api/proto:meta_api_proto_py",
|
|
"//nexus/models/proto:models_proto_py",
|
|
],
|
|
)
|