mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-22 01:27:46 +01:00
16 lines
421 B
Python
16 lines
421 B
Python
|
load("@rules_python//python:defs.bzl", "py_library")
|
||
|
load("@pip_modules//:requirements.bzl", "requirement")
|
||
|
|
||
|
py_library(
|
||
|
name = "aioclient",
|
||
|
srcs = glob(["**/*.py"]),
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
requirement("cachetools"),
|
||
|
requirement("lru-dict"),
|
||
|
requirement("tenacity"),
|
||
|
"//idm/api2/proto:idm_grpc_py",
|
||
|
"//idm/api2/proto:idm_proto_py",
|
||
|
],
|
||
|
)
|