source/projects/datalog/BUILD

19 lines
300 B
Python
Raw Normal View History

2021-05-15 05:39:18 +00:00
py_library(
name = "datalog",
srcs = glob(["src/python/**/*.py"]),
imports = [
"src/python",
2021-05-15 05:45:58 +00:00
],
visibility = [
"//visibility:public",
2021-05-15 05:39:18 +00:00
]
)
py_pytest(
name = "test_datalog",
srcs = glob(["test/python/**/*.py"]),
deps = [
":datalog",
]
)