blob: 6b450b4cfd91ba3d31ac77b428d6bbf7165edddf [file] [log] [blame]
# Description:
# dataclasses module from the Python 3.7 standard library.
# For backporting to Python 3.6 and below.
package(default_visibility = ["//visibility:public"])
licenses(["notice"]) # Python Software Foundation
filegroup(
name = "srcs",
srcs = glob(["**"]),
visibility = ["//visibility:public"],
)
py_library(
name = "dataclasses",
srcs = glob(["**/*.py"]),
srcs_version = "PY3", # Only works with Python 3.
imports = ["."],
)