mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-22 17:47:45 +01:00
16 lines
425 B
Python
16 lines
425 B
Python
|
load("@pip_modules_external//:requirements.bzl", "requirement")
|
||
|
load("@rules_python//python:defs.bzl", "py_library")
|
||
|
|
||
|
py_library(
|
||
|
name = "logging",
|
||
|
srcs = glob(["**/*.py"]),
|
||
|
srcs_version = "PY3ONLY",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
requirement("orjson"),
|
||
|
requirement("prometheus_client"),
|
||
|
requirement("izihawa_types"),
|
||
|
requirement("izihawa_utils"),
|
||
|
],
|
||
|
)
|