mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-10 18:56:03 +01:00
dd23846059
- [nexus] Switch bot - [bot] Added extra receivers functionality GitOrigin-RevId: 68fc32d3e79ff411758f54f435fe8680fc42dead
20 lines
483 B
Python
20 lines
483 B
Python
load("@rules_python//python:defs.bzl", "py_library")
|
|
load("@pip_modules//:requirements.bzl", "requirement")
|
|
|
|
py_library(
|
|
name = "telegram",
|
|
srcs = glob(
|
|
["**/*.py"],
|
|
exclude = ["tests/**"],
|
|
),
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
deps = [
|
|
requirement("telethon"),
|
|
"//nexus/models/proto:proto_py",
|
|
"//nexus/nlptools",
|
|
"//nexus/translations",
|
|
requirement("izihawa_utils"),
|
|
],
|
|
)
|