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