Austin Schuh | 2e28d87 | 2022-02-19 18:25:57 -0800 | [diff] [blame] | 1 | py_library( |
| 2 | name = "python_osqp", |
| 3 | srcs = glob(["**/*.py"]), |
| 4 | data = glob( |
| 5 | include = ["**/*"], |
| 6 | exclude = ["**/*.py"], |
| 7 | ), |
| 8 | imports = ["."], |
Philipp Schrader | 9e1b9bd | 2021-12-28 00:15:12 -0800 | [diff] [blame] | 9 | target_compatible_with = [ |
| 10 | "@//tools/platforms/python:debian_bundled_python", |
| 11 | ], |
Austin Schuh | 2e28d87 | 2022-02-19 18:25:57 -0800 | [diff] [blame] | 12 | visibility = ["//visibility:public"], |
| 13 | deps = [ |
| 14 | "@python_repo//:numpy", |
| 15 | "@python_repo//:scipy", |
| 16 | "@qdldl_amd64//:python_qdldl", |
| 17 | ], |
| 18 | ) |