Convert lilith to a runnable

This commit is contained in:
Reid 'arrdem' McKenzie 2021-08-21 17:20:13 -06:00
parent dc17b75fa2
commit b1a80feb8a
2 changed files with 2 additions and 12 deletions

View file

@ -1,21 +1,11 @@
py_project( py_project(
name = "lilith", name = "lilith",
main = "src/python/lilith/__main__.py",
lib_deps = [ lib_deps = [
py_requirement("lark"), py_requirement("lark"),
py_requirement("prompt_toolkit"),
], ],
test_deps = [ test_deps = [
py_requirement("hypothesis"), py_requirement("hypothesis"),
]
)
py_binary(
name = "repl",
main = "src/python/lilith/repl.py",
imports = [
"src/python",
], ],
deps = [
":lilith",
py_requirement("prompt_toolkit"),
]
) )