aboutsummaryrefslogtreecommitdiff
path: root/gazelle/python/testdata/monorepo/three/BUILD.out
blob: 78a3927db944c8804b1f1570492ce2744e71c6ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
load("@rules_python//python:defs.bzl", "py_library")

# gazelle:python_extension enabled
# gazelle:python_root
# gazelle:resolve py bar //one/bar
# gazelle:resolve py bar.baz //one/bar/baz:modified_name_baz
# gazelle:resolve py foo //one/foo

py_library(
    name = "three",
    srcs = ["__init__.py"],
    visibility = ["//three:__subpackages__"],
    deps = [
        "//coarse_grained",
        "//one/bar",
        "//one/bar/baz:modified_name_baz",
        "//one/foo",
        "@root_pip_deps_rootboto4//:pkg",
        "@three_pip_deps_threeboto3//:pkg",
    ],
)