• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# Description:
2#   Six provides simple utilities for wrapping over differences between Python 2
3#   and Python 3.
4
5load("@rules_python//python:defs.bzl", "py_library")
6
7licenses(["notice"])  # MIT
8
9exports_files(["LICENSE"])
10
11py_library(
12    name = "six",
13    srcs = ["six.py"],
14    srcs_version = "PY2AND3",
15    visibility = ["//visibility:public"],
16)
17