2021-08-21 05:16:59 +00:00
|
|
|
py_project(
|
2021-08-21 23:25:19 +00:00
|
|
|
name = "lib",
|
2021-08-21 05:16:59 +00:00
|
|
|
lib_deps = [
|
2021-08-21 17:49:46 +00:00
|
|
|
py_requirement("lark"),
|
2021-08-22 00:58:33 +00:00
|
|
|
py_requirement("pyyaml"),
|
|
|
|
py_requirement("markdown"),
|
2021-08-21 05:16:59 +00:00
|
|
|
],
|
|
|
|
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",
|
2021-08-22 00:58:33 +00:00
|
|
|
# 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"),
|
|
|
|
],
|
|
|
|
)
|