Lee Mracek | 3e16a86 | 2019-01-24 11:15:36 -0500 | [diff] [blame] | 1 | package(default_visibility = ["//visibility:public"]) |
| 2 | |
| 3 | py_binary( |
| 4 | name = "plot_action", |
| 5 | srcs = [ |
James Kuszmaul | 41fa78a | 2019-12-14 20:53:14 -0800 | [diff] [blame] | 6 | "logentry.py", |
Austin Schuh | 8e17be9 | 2019-12-24 09:32:11 -0800 | [diff] [blame^] | 7 | "logreader.py", |
| 8 | "plot_action.py", |
| 9 | "plotter.py", |
Lee Mracek | 3e16a86 | 2019-01-24 11:15:36 -0500 | [diff] [blame] | 10 | ], |
| 11 | legacy_create_init = False, |
| 12 | restricted_to = ["//tools:k8"], |
| 13 | deps = [ |
| 14 | ":python_init", |
| 15 | "@matplotlib", |
| 16 | ], |
| 17 | ) |
| 18 | |
| 19 | py_library( |
| 20 | name = "python_init", |
| 21 | srcs = ["__init__.py"], |
| 22 | deps = ["//frc971:python_init"], |
| 23 | ) |