1# Description: 2# Backports for the typing module to older Python versions. See 3# https://github.com/python/typing/blob/master/typing_extensions/README.rst 4 5licenses(["notice"]) # PSF 6 7py_library( 8 name = "typing_extensions", 9 srcs_version = "PY3", 10 visibility = ["//visibility:public"], 11) 12 13filegroup( 14 name = "LICENSE", 15 visibility = ["//visibility:public"], 16) 17