| package(default_visibility = ["//y2017:__subpackages__"]) |
| |
| py_binary( |
| name = "drivetrain", |
| srcs = [ |
| "drivetrain.py", |
| ], |
| legacy_create_init = False, |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| ":python_init", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:drivetrain", |
| ], |
| ) |
| |
| py_binary( |
| name = "polydrivetrain", |
| srcs = [ |
| "drivetrain.py", |
| "polydrivetrain.py", |
| ], |
| legacy_create_init = False, |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| ":python_init", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:polydrivetrain", |
| ], |
| ) |
| |
| py_library( |
| name = "polydrivetrain_lib", |
| srcs = [ |
| "drivetrain.py", |
| "polydrivetrain.py", |
| ], |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| "//frc971/control_loops/python:drivetrain", |
| ], |
| ) |
| |
| py_binary( |
| name = "shooter", |
| srcs = [ |
| "shooter.py", |
| ], |
| legacy_create_init = False, |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| ":python_init", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| "@matplotlib_repo//:matplotlib2.7", |
| ], |
| ) |
| |
| py_binary( |
| name = "indexer", |
| srcs = [ |
| "indexer.py", |
| ], |
| legacy_create_init = False, |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| ":python_init", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| ], |
| ) |
| |
| py_binary( |
| name = "intake", |
| srcs = [ |
| "intake.py", |
| ], |
| legacy_create_init = False, |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| ":python_init", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| "//frc971/control_loops/python:linear_system", |
| ], |
| ) |
| |
| py_binary( |
| name = "turret", |
| srcs = [ |
| "turret.py", |
| ], |
| legacy_create_init = False, |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| ":python_init", |
| "//aos/util:py_trapezoid_profile", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| "@matplotlib_repo//:matplotlib2.7", |
| ], |
| ) |
| |
| py_binary( |
| name = "hood", |
| srcs = [ |
| "hood.py", |
| ], |
| legacy_create_init = False, |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| ":python_init", |
| "//aos/util:py_trapezoid_profile", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| "@matplotlib_repo//:matplotlib2.7", |
| ], |
| ) |
| |
| py_library( |
| name = "turret_lib", |
| srcs = [ |
| "turret.py", |
| ], |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| "//aos/util:py_trapezoid_profile", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| ], |
| ) |
| |
| py_library( |
| name = "indexer_lib", |
| srcs = [ |
| "indexer.py", |
| ], |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| ], |
| ) |
| |
| py_binary( |
| name = "column", |
| srcs = [ |
| "column.py", |
| ], |
| legacy_create_init = False, |
| restricted_to = ["//tools:k8"], |
| deps = [ |
| ":indexer_lib", |
| ":python_init", |
| ":turret_lib", |
| "//external:python-gflags", |
| "//external:python-glog", |
| "//frc971/control_loops/python:controls", |
| "@matplotlib_repo//:matplotlib2.7", |
| ], |
| ) |
| |
| py_library( |
| name = "python_init", |
| srcs = ["__init__.py"], |
| visibility = ["//visibility:public"], |
| deps = ["//y2017/control_loops:python_init"], |
| ) |