protobuf/third_party/six.BUILD

14 lines
237 B
Plaintext
Raw Normal View History

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