Somewhat working launcher with prelude!

This commit is contained in:
Reid 'arrdem' McKenzie 2021-08-21 18:58:33 -06:00
commit 8dd071625f
11 changed files with 284 additions and 41 deletions
projects/lilith

View file

@ -2,6 +2,8 @@ py_project(
name = "lib",
lib_deps = [
py_requirement("lark"),
py_requirement("pyyaml"),
py_requirement("markdown"),
],
test_deps = [
py_requirement("hypothesis"),
@ -13,7 +15,10 @@ zapp_binary(
main = "src/python/lilith/__main__.py",
deps = [
":lib",
py_requirement("lark"), # FIXME: Absolutely a zapp bug
# FIXME: Due to zapp bug(s), replicating requirements here.
py_requirement("lark"),
py_requirement("pyyaml"),
py_requirement("markdown"),
py_requirement("prompt_toolkit"),
],
)