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(
name = "lib",
srcs = glob(["src/**/*.py"]),
imports = ["src"],
srcs = glob(["src/python/**/*.py"]),
imports = ["src/python"],
deps = [
py_requirement("pyrsistent"),
]