This commit is contained in:
Reid 'arrdem' McKenzie 2021-08-21 17:25:19 -06:00
commit d2309e1ac4
2 changed files with 13 additions and 24 deletions
projects/lilith

View file

@ -1,11 +1,19 @@
py_project(
name = "lilith",
main = "src/python/lilith/__main__.py",
name = "lib",
lib_deps = [
py_requirement("lark"),
py_requirement("prompt_toolkit"),
],
test_deps = [
py_requirement("hypothesis"),
],
)
zapp_binary(
name = "lilith",
main = "src/python/lilith/__main__.py",
deps = [
":lib",
py_requirement("lark"), # FIXME: Absolutely a zapp bug
py_requirement("prompt_toolkit"),
],
)