source/projects/aloe/BUILD
Reid 'arrdem' McKenzie e283123b3a Fix obviously colliding ICMP stream IDs
But it looks like the underlying ICMPLIB model of receive() is broken for what I'm doing
2021-11-22 01:32:11 -07:00

15 lines
283 B
Python

py_project(
name = "lib"
)
zapp_binary(
name = "aloe",
main = "src/python/aloe/__main__.py",
deps = [
":lib",
py_requirement("graphviz"),
py_requirement("icmplib"),
py_requirement("pytz"),
py_requirement("requests"),
],
)