mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-10 23:31:28 +00:00
15 lines
311 B
Python
15 lines
311 B
Python
load("@aspect_rules_py//py:defs.bzl", "py_library")
|
|
|
|
# gazelle:exclude example.py
|
|
|
|
py_library(
|
|
name = "rhwebscraper_lib",
|
|
srcs = ["__init__.py"],
|
|
imports = ["../.."],
|
|
visibility = ["//:__subpackages__"],
|
|
deps = [
|
|
"@pypi_aiohttp//:pkg",
|
|
"@pypi_beautifulsoup4//:pkg",
|
|
],
|
|
)
|