Making headway towards a runnable state

This commit is contained in:
Reid 'arrdem' McKenzie 2021-08-21 20:02:54 -06:00
commit 4243a9355c
6 changed files with 80 additions and 32 deletions
projects/lilith

View file

@ -1,5 +1,6 @@
py_project(
name = "lib",
name = "lilith",
main = "src/python/lilith/__main__.py",
lib_deps = [
py_requirement("lark"),
py_requirement("pyyaml"),
@ -9,16 +10,3 @@ py_project(
py_requirement("hypothesis"),
],
)
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"),
py_requirement("prompt_toolkit"),
],
)