mirror of
https://github.com/bazelbuild/rules_cc
synced 2024-11-25 17:31:30 +00:00
246bff6d0e
* Adding .gitignore * Referencing protobuf, absl, and six in the WORKSPACE * Adding six.BUILD RELNOTES: None PiperOrigin-RevId: 228309963
15 lines
299 B
Plaintext
15 lines
299 B
Plaintext
# 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"],
|
|
)
|