blob: 8d2ef2aa4c7fa84617c8cf5faddfc6b42eb2184f [file] [log] [blame]
Brian Silverman4fe44ea2020-02-02 12:56:42 -08001py_library(
2 name = "python_opencv",
3 srcs = glob(["**/*.py"]),
4 data = glob(
5 include = ["**/*"],
6 exclude = ["**/*.py"],
7 ),
Philipp Schradercc016b32021-12-30 08:59:58 -08008 imports = ["."],
Philipp Schrader9e1b9bd2021-12-28 00:15:12 -08009 target_compatible_with = [
10 "@//tools/platforms/python:debian_bundled_python",
11 ],
Philipp Schradercc016b32021-12-30 08:59:58 -080012 visibility = ["//visibility:public"],
Philipp Schrader092a62d2021-12-05 23:15:05 -080013 deps = [
14 "@python_repo//:numpy",
15 ],
Brian Silverman4fe44ea2020-02-02 12:56:42 -080016)