source/projects/shoggoth/BUILD

22 lines
427 B
Python
Raw Normal View History

2022-03-29 07:29:18 +00:00
py_project(
2022-06-01 01:04:14 +00:00
name = "shoggoth",
2022-06-01 01:25:18 +00:00
main = "src/python/shoggoth/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
)
2022-06-01 05:08:29 +00:00
zapp_binary(
name="ichor",
main = "src/python/ichor/__main__.py",
shebang="/usr/bin/env python3",
deps = [
":lib",
],
)