source/projects/flowmetal/BUILD
Reid 'arrdem' McKenzie 2605baa215 Get that working
2021-05-14 18:47:57 -06:00

21 lines
382 B
Text

package(default_visibility = ["//visibility:public"])
py_library(
name = "lib",
srcs = glob(["src/python/flowmetal/*.py"]),
imports = [
"src/python"
],
deps = [
]
)
py_binary(
name = "server",
deps = [
":lib",
py_requirement("click"),
py_requirement("redis"),
],
main = "src/python/flowmetal/__main__.py",
)