blob: f26339555544db4aaaa9581018e7a7a71f103c4a [file] [log] [blame]
package(default_visibility = ["//visibility:public"])
pex_library(
name = "heron-shell-lib",
srcs = glob(
["**/*.py"],
),
deps = [
"//heron/common/src/python:common-py",
],
reqs = [
"requests==2.12.3",
"tornado==4.0.2",
"future==0.18.2",
],
)
pex_binary(
name = "heron-shell",
srcs = ["main.py"],
deps = [
":heron-shell-lib",
],
resources = [
"//heron/shell/assets:assets",
],
)