summaryrefslogtreecommitdiffstats
path: root/third_party/six.BUILD
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@flameeyes.eu>2017-12-28 19:46:36 +0100
committerDiego Elio Pettenò <flameeyes@flameeyes.eu>2017-12-28 19:46:36 +0100
commit8467586fc5546debe7b672fcebbf2b13aa6fa06c (patch)
tree034118dc13bc03ef5edd4f471ec43e04df592c39 /third_party/six.BUILD
parentRemove misleading MANIFEST template. (diff)
downloadglucometerutils-experimental-bazel-test.tar
glucometerutils-experimental-bazel-test.tar.gz
glucometerutils-experimental-bazel-test.tar.bz2
glucometerutils-experimental-bazel-test.tar.lz
glucometerutils-experimental-bazel-test.tar.xz
glucometerutils-experimental-bazel-test.tar.zst
glucometerutils-experimental-bazel-test.zip
Diffstat (limited to 'third_party/six.BUILD')
-rw-r--r--third_party/six.BUILD14
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"],
+)