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(
|
||||
name = "lib",
|
||||
srcs = [
|
||||
"src/python/**/*.py"
|
||||
srcs = glob(["src/python/flowmetal/*.py"]),
|
||||
imports = [
|
||||
"src/python"
|
||||
],
|
||||
imports = ["src/python"],
|
||||
deps = [
|
||||
]
|
||||
)
|
||||
|
@ -17,5 +17,5 @@ py_binary(
|
|||
py_requirement("click"),
|
||||
py_requirement("redis"),
|
||||
],
|
||||
main = "src/python/flowmetal/server/__main__.py",
|
||||
main = "src/python/flowmetal/__main__.py",
|
||||
)
|
||||
|
|
Loading…
Reference in a new issue