mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-09 23:01:27 +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",
|
||
|
],
|
||
|
)
|