You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
498 B
21 lines
498 B
# Description:
|
|
# Backports for the typing module to older Python versions. See
|
|
# https://github.com/python/typing/blob/master/typing_extensions/README.rst
|
|
|
|
licenses(["notice"]) # PSF
|
|
|
|
py_library(
|
|
name = "typing_extensions",
|
|
srcs = ["typing_extensions.py"],
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
)
|
|
|
|
genrule(
|
|
name = "license",
|
|
srcs = ["@astunparse_license"],
|
|
outs = ["LICENSE"],
|
|
cmd = "cp $< $@",
|
|
visibility = ["//visibility:public"],
|
|
)
|