aboutsummaryrefslogtreecommitdiffhomepage
path: root/third_party/six.BUILD
blob: a1b2f7b20c628f48bca9072501c1248309693602 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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"],
)