blob: 91bd47b2faf079d0ede4442d91324e5b60a1575c [file]
py_library(
name = "src",
srcs = glob(["*.py"]),
srcs_version = "PY3",
deps = [],
)
py_test(
name = "test",
srcs = glob(["tests/*.py"]),
main = "tests/__main__.py",
deps = [":src"],
)