source/projects/shogoth/BUILD

13 lines
276 B
Python
Raw Normal View History

2022-03-29 07:29:18 +00:00
py_project(
2022-01-09 21:46:21 +00:00
name = "shogoth",
main = "src/python/shogoth/repl/__main__.py",
main_deps = [
py_requirement("prompt_toolkit"),
py_requirement("yaspin"),
],
2022-03-29 07:29:18 +00:00
lib_deps = [
py_requirement("lark"),
2022-05-31 15:36:47 +00:00
py_requirement("flask"),
2022-03-29 07:29:18 +00:00
],
2022-01-09 21:46:21 +00:00
)