2021-08-21 05:16:59 +00:00
|
|
|
py_project(
|
2021-08-22 02:02:54 +00:00
|
|
|
name = "lilith",
|
|
|
|
main = "src/python/lilith/__main__.py",
|
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
|
|
|
],
|
2021-08-22 03:38:42 +00:00
|
|
|
main_deps = [
|
|
|
|
py_requirement("prompt-toolkit"),
|
|
|
|
],
|
2021-08-21 05:16:59 +00:00
|
|
|
test_deps = [
|
|
|
|
py_requirement("hypothesis"),
|
2021-08-21 20:07:57 +00:00
|
|
|
],
|
|
|
|
)
|