protobuf/six.BUILD

14 lines
227 B
Plaintext
Raw Normal View History

genrule(
name = "copy_six",
srcs = ["six-1.10.0/six.py"],
outs = ["six.py"],
cmd = "cp $< $(@)",
)
2015-10-22 20:38:17 +00:00
py_library(
name = "six",
srcs = ["six.py"],
srcs_version = "PY2AND3",
2015-10-22 20:38:17 +00:00
visibility = ["//visibility:public"],
)