Get that working

This commit is contained in:
Reid 'arrdem' McKenzie 2021-05-14 18:47:57 -06:00
parent 95dc977693
commit 2605baa215

View file

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