Sign in
bazel
/
bazel
/
623fe5862afe94184f52d44fe192a96e179df92c
/
.
/
examples
/
py
/
BUILD
blob: 39ef8c0452bf05fb65142a89fc2c740a34f0a91b [
file
] [
log
] [
blame
]
package
(
default_visibility
=
[
"//visibility:public"
])
py_library
(
name
=
"lib"
,
srcs
=
[
"lib.py"
],
)
py_binary
(
name
=
"bin"
,
srcs
=
[
"bin.py"
],
deps
=
[
":lib"
],
)
filegroup
(
name
=
"srcs"
,
srcs
=
[
"BUILD"
]
+
glob
([
"**/*.py"
]),
)