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.
15 lines
262 B
15 lines
262 B
4 months ago
|
# Description:
|
||
|
# enum34 provides a backport of the enum module for Python 2.
|
||
|
|
||
|
licenses(["notice"]) # MIT
|
||
|
|
||
|
filegroup(
|
||
|
name = "LICENSE",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|
||
|
|
||
|
py_library(
|
||
|
name = "enum",
|
||
|
visibility = ["//visibility:public"],
|
||
|
)
|