blob: 4120154958e1f569a6fbb969c7b04df0f166ed11 [file] [log] [blame]
Austin Schuh2e28d872022-02-19 18:25:57 -08001py_library(
2 name = "python_qdldl",
3 srcs = glob(["**/*.py"]),
4 data = glob(
5 include = ["**/*"],
6 exclude = ["**/*.py"],
7 ),
8 imports = ["."],
Philipp Schrader9e1b9bd2021-12-28 00:15:12 -08009 target_compatible_with = [
10 "@//tools/platforms/python:debian_bundled_python",
11 ],
Austin Schuh2e28d872022-02-19 18:25:57 -080012 visibility = ["//visibility:public"],
13 deps = [
Philipp Schraderebb658f2022-09-17 17:31:09 -070014 "@pip//numpy",
15 "@pip//scipy",
Austin Schuh2e28d872022-02-19 18:25:57 -080016 ],
17)