blob: 3d2aeefed268b54e55a4e0f83fc7c36072c03f74 [file] [log] [blame]
load("//:repositories.bzl", "all_requirements")
py_library(
name = "src",
srcs_version = "PY3",
srcs = glob(["**/*.py"]),
data = glob(["**/*"], exclude=["**/*.py", "**/* *", "BUILD", "WORKSPACE"]),
deps = ["@"+ repo + "//:lib" for repo in all_requirements],
)
py_test(
name = "test",
srcs = glob(["tests/**/*.py"]),
main = "tests/__main__.py",
deps = [
":src",
],
size="small",
)