mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-24 18:45:49 +01:00
aa819fbc1a
1 internal commit(s) GitOrigin-RevId: e4e34d0a00e117151a1fde75897567cbfc732d5f
21 lines
513 B
Python
21 lines
513 B
Python
load("@pip_modules//:requirements.bzl", "requirement")
|
|
load("@rules_python//python:defs.bzl", "py_library")
|
|
|
|
py_library(
|
|
name = "aiogrpctools",
|
|
srcs = glob(
|
|
["**/*.py"],
|
|
exclude = ["tests/**"],
|
|
),
|
|
srcs_version = "PY3ONLY",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("grpcio"),
|
|
requirement("pyyaml"),
|
|
requirement("aiokit"),
|
|
"//library/configurator",
|
|
"//library/logging",
|
|
requirement("izihawa_utils"),
|
|
],
|
|
)
|