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