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