aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/subdir_sources/foo/has_init/BUILD.out
blob: ce59ee263ecebf4c7e6876bbd16745a5680d2166 (plain)
1
2
3
4
5
6
7
8
9
10
11
load("@rules_python//python:defs.bzl", "py_library")

py_library(
    name = "has_init",
    srcs = [
        "__init__.py",
        "python/my_module.py",
    ],
    imports = ["../.."],
    visibility = ["//:__subpackages__"],
)