Add a 'python' prefix

This commit is contained in:
Reid 'arrdem' McKenzie 2021-04-09 01:37:24 -06:00
parent 9feb262454
commit e3c099e729
20 changed files with 2 additions and 2 deletions

View file

@ -2,8 +2,8 @@ package(default_visibility = ["//visibility:public"])
py_library( py_library(
name = "lib", name = "lib",
srcs = glob(["src/**/*.py"]), srcs = glob(["src/python/**/*.py"]),
imports = ["src"], imports = ["src/python"],
deps = [ deps = [
py_requirement("pyrsistent"), py_requirement("pyrsistent"),
] ]