mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-13 08:41:26 +00:00
16 lines
337 B
Python
16 lines
337 B
Python
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",
|
|
],
|
|
)
|