source/projects/lilith/BUILD

25 lines
550 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"),
py_requirement("pyyaml"),
py_requirement("markdown"),
],
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",
# FIXME: Due to zapp bug(s), replicating requirements here.
py_requirement("lark"),
py_requirement("pyyaml"),
py_requirement("markdown"),
2021-08-21 23:25:19 +00:00
py_requirement("prompt_toolkit"),
],
)