blob: ad5552b4c57039b489a78d2b719c3412b139c22c [file] [log] [blame]
Lee Mracek3e16a862019-01-24 11:15:36 -05001package(default_visibility = ["//visibility:public"])
2
3py_binary(
4 name = "plot_action",
5 srcs = [
6 "plotter.py",
7 "plot_action.py",
8 "logreader.py",
9 "logentry.py",
10 ],
11 legacy_create_init = False,
12 restricted_to = ["//tools:k8"],
13 deps = [
14 ":python_init",
15 "@matplotlib",
16 ],
17)
18
19py_library(
20 name = "python_init",
21 srcs = ["__init__.py"],
22 deps = ["//frc971:python_init"],
23)