source/projects/lilith/BUILD

22 lines
351 B
Python
Raw Normal View History

py_project(
name = "lilith",
lib_deps = [
2021-08-21 17:49:46 +00:00
py_requirement("lark"),
],
test_deps = [
py_requirement("hypothesis"),
]
)
2021-08-21 20:07:57 +00:00
py_binary(
name = "repl",
main = "src/python/lilith/repl.py",
imports = [
"src/python",
],
deps = [
":lilith",
py_requirement("prompt_toolkit"),
]
)