kse-01/tensorflow/third_party/backports_weakref.BUILD

23 lines
457 B
Plaintext
Raw Normal View History

2023-10-09 11:37:31 +00:00
# Description:
# Backport of new features in Python's weakref module.
package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # Python 2.0
py_library(
name = "org_python_pypi_backports_weakref",
srcs = [
"backports/__init__.py",
"backports/weakref.py",
],
srcs_version = "PY2AND3",
)
genrule(
name = "license",
srcs = ["@org_python_license"],
outs = ["LICENSE"],
cmd = "cp $< $@",
)