blob: 58f64a9b9f3800c1ccfbf29c1c19edaed82f2371 [file] [log] [blame]
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",
"//third_party/python:pkginfo",
],
size="small",
imports = [
"../third_party/python/",
]
)