1# Description:
2# enum34 provides a backport of the enum module for Python 2.
3
4licenses(["notice"]) # MIT
5
6exports_files(["LICENSE"])
7
8py_library(
9 name = "enum",
10 srcs = ["__init__.py"],
11 srcs_version = "PY3",
12 visibility = ["//visibility:public"],
13)
14