source/projects/clusterctrl/BUILD

19 lines
295 B
Python
Raw Normal View History

2021-10-12 03:22:49 +00:00
py_project(
2021-11-02 07:12:06 +00:00
name = "lib",
lib_deps = [
py_requirement("smbus2"),
],
2021-10-12 03:22:49 +00:00
)
zapp_binary(
2021-10-28 04:44:46 +00:00
name = "clusterctrl",
main = "src/python/clusterctrl/__main__.py",
2021-10-12 03:22:49 +00:00
imports = [
"src/python",
],
deps = [
":lib",
py_requirement("click"),
],
)