Get that working
This commit is contained in:
parent
95dc977693
commit
2605baa215
1 changed files with 4 additions and 4 deletions
|
@ -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",
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue