aboutsummaryrefslogtreecommitdiffhomepage
path: root/six.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'six.BUILD')
-rw-r--r--six.BUILD12
1 files changed, 12 insertions, 0 deletions
diff --git a/six.BUILD b/six.BUILD
new file mode 100644
index 0000000000..0a507257bf
--- /dev/null
+++ b/six.BUILD
@@ -0,0 +1,12 @@
+genrule(
+ name = "copy_six",
+ srcs = ["six-1.10.0/six.py"],
+ outs = ["six.py"],
+ cmd = "cp $< $(@)",
+)
+
+py_library(
+ name = "six",
+ srcs = ["six.py"],
+ visibility = ["//visibility:public"],
+)