source/projects/lilith/BUILD.bazel

16 lines
328 B
Python
Raw Normal View History

py_project(
name = "lilith",
2024-02-06 18:18:33 +00:00
main = "src/lilith/__main__.py",
lib_deps = [
2021-08-21 17:49:46 +00:00
py_requirement("lark"),
py_requirement("pyyaml"),
py_requirement("markdown"),
],
2021-08-22 03:38:42 +00:00
main_deps = [
py_requirement("prompt-toolkit"),
],
test_deps = [
py_requirement("hypothesis"),
2021-08-21 20:07:57 +00:00
],
)