mirror of
https://github.com/nexus-stc/hyperboria
synced 2025-01-18 14:37:35 +01:00
18 lines
417 B
Python
18 lines
417 B
Python
|
load("@pip_modules_external//:requirements.bzl", "requirement")
|
||
|
load("@rules_python//python:defs.bzl", "py_library")
|
||
|
|
||
|
py_library(
|
||
|
name = "aiopostgres",
|
||
|
srcs = glob(
|
||
|
["**/*.py"],
|
||
|
exclude = ["tests/**"],
|
||
|
),
|
||
|
srcs_version = "PY3",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
requirement("aiopg"),
|
||
|
requirement("tenacity"),
|
||
|
requirement("aiokit"),
|
||
|
],
|
||
|
)
|