mirror of
https://github.com/resf/distro-tools.git
synced 2025-01-03 08:10:56 +00:00
15 lines
337 B
Text
15 lines
337 B
Text
load("@aspect_rules_py//py:defs.bzl", "py_library")
|
|
|
|
# gazelle:exclude example.py
|
|
|
|
py_library(
|
|
name = "rherrata_lib",
|
|
srcs = ["__init__.py"],
|
|
imports = ["../.."],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"@pypi_aiohttp//:pkg",
|
|
"@pypi_dataclass_wizard//:pkg",
|
|
"@pypi_yarl//:pkg",
|
|
],
|
|
)
|