mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-05 01:12:55 +01:00
20 lines
490 B
Python
20 lines
490 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:models_proto_py",
|
||
|
"//nexus/nlptools",
|
||
|
"//nexus/translations",
|
||
|
requirement("izihawa_utils"),
|
||
|
],
|
||
|
)
|