aboutsummaryrefslogtreecommitdiffhomepage
path: root/six.BUILD
blob: fd3d0cc16f488cbc41349d201ffc11afd3e35aa7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
# Description:
#   Six provides simple utilities for wrapping over differences between Python 2
#   and Python 3.

licenses(["notice"])  # MIT

py_library(
    name = "six",
    srcs = ["six.py"],
    srcs_version = "PY2AND3",
    visibility = ["//visibility:public"],
)