Sign in
bazel
/
bazel
/
2c55e6a7d452e86600d8a4d83be3e91c2333a319
/
.
/
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"
]),
)