mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-20 16:47:56 +01:00
19 lines
439 B
Python
19 lines
439 B
Python
|
load("@pip_modules//:requirements.bzl", "requirement")
|
||
|
load("@rules_python//python:defs.bzl", "py_library")
|
||
|
|
||
|
py_library(
|
||
|
name = "telegram",
|
||
|
srcs = glob(
|
||
|
["**/*.py"],
|
||
|
exclude = ["tests/**"],
|
||
|
),
|
||
|
srcs_version = "PY3",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
requirement("sqlalchemy"),
|
||
|
requirement("telethon"),
|
||
|
requirement("aiokit"),
|
||
|
"//library/logging",
|
||
|
],
|
||
|
)
|