source/projects/lilith/BUILD

20 lines
373 B
Python
Raw Normal View History

py_project(
2021-08-21 23:25:19 +00:00
name = "lib",
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
],
)
2021-08-21 23:25:19 +00:00
zapp_binary(
name = "lilith",
main = "src/python/lilith/__main__.py",
deps = [
":lib",
py_requirement("lark"), # FIXME: Absolutely a zapp bug
py_requirement("prompt_toolkit"),
],
)