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.
|
# Description:
|
|
# enum34 provides a backport of the enum module for Python 2.
|
|
|
|
licenses(["notice"]) # MIT
|
|
|
|
exports_files(["LICENSE"])
|
|
|
|
py_library(
|
|
name = "enum",
|
|
srcs = ["__init__.py"],
|
|
srcs_version = "PY3",
|
|
visibility = ["//visibility:public"],
|
|
)
|