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