aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/py
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/py')
-rw-r--r--third_party/py/six/BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/third_party/py/six/BUILD b/third_party/py/six/BUILD
new file mode 100644
index 0000000000..39ce3a1fa8
--- /dev/null
+++ b/third_party/py/six/BUILD
@@ -0,0 +1,15 @@
+licenses(["notice"])
+
+filegroup(
+ name = "srcs",
+ srcs = glob(["**"]),
+ visibility = ["//third_party:__pkg__"],
+)
+
+py_library(
+ name = "six",
+ srcs = ["six.py"],
+ imports = ["."],
+ srcs_version = "PY2AND3",
+ visibility = ["//visibility:public"],
+)