blob: 993c3847811e887fff1ea5fe858454ebaf4b1459 [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
pex_library(
name = "executor-py",
srcs = ["heron_executor.py"],
deps = [
"//heron/statemgrs/src/python:statemgr-py",
"//heron/common/src/python:common-py",
],
reqs = ["PyYAML==3.10"],
)
pex_binary(
name = "heron-executor",
srcs = ["heron_executor.py"],
deps = [
":executor-py",
],
)