aboutsummaryrefslogtreecommitdiff
path: root/third_party/six.BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/six.BUILD')
-rw-r--r--third_party/six.BUILD16
1 files changed, 16 insertions, 0 deletions
diff --git a/third_party/six.BUILD b/third_party/six.BUILD
new file mode 100644
index 0000000..19433c2
--- /dev/null
+++ b/third_party/six.BUILD
@@ -0,0 +1,16 @@
+# Description:
+# Six provides simple utilities for wrapping over differences between Python 2
+# and Python 3.
+
+load("@rules_python//python:defs.bzl", "py_library")
+
+licenses(["notice"]) # MIT
+
+exports_files(["LICENSE"])
+
+py_library(
+ name = "six",
+ srcs = ["six.py"],
+ srcs_version = "PY2AND3",
+ visibility = ["//visibility:public"],
+)