source/projects/lilith/BUILD.bazel
2024-02-06 11:18:33 -07:00

15 lines
328 B
Python

py_project(
name = "lilith",
main = "src/lilith/__main__.py",
lib_deps = [
py_requirement("lark"),
py_requirement("pyyaml"),
py_requirement("markdown"),
],
main_deps = [
py_requirement("prompt-toolkit"),
],
test_deps = [
py_requirement("hypothesis"),
],
)