2021-08-21 05:16:59 +00:00
|
|
|
py_project(
|
|
|
|
name = "lilith",
|
|
|
|
lib_deps = [
|
2021-08-21 17:49:46 +00:00
|
|
|
py_requirement("lark"),
|
2021-08-21 05:16:59 +00:00
|
|
|
],
|
|
|
|
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"),
|
|
|
|
]
|
|
|
|
)
|