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

py_library(
    name = "two",
    srcs = [
        "__init__.py",
        "three.py",
    ],
    imports = ["../.."],
    visibility = ["//:__subpackages__"],
    deps = ["//foo"],
)