source/projects/datalog-shell/BUILD
Reid 'arrdem' McKenzie 245f4a0cba Relocating some files
2021-08-08 00:13:36 -06:00

12 lines
261 B
Text

py_binary(
name = "datalog-shell",
main = "src/python/datalog/shell/__main__.py",
imports = [
"src/python"
],
deps = [
"//projects/datalog",
py_requirement("prompt_toolkit"),
py_requirement("yaspin"),
]
)