1load("@rules_python//python:defs.bzl", "py_library") 2 3# gazelle:python_root 4 5py_library( 6 name = "three", 7 srcs = ["__init__.py"], 8 visibility = ["//three:__subpackages__"], 9 deps = [ 10 "//one/bar", 11 "//one/bar/baz", 12 "//one/foo", 13 ], 14) 15