summaryrefslogtreecommitdiff
path: root/examples/turing_machine/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'examples/turing_machine/BUILD')
-rw-r--r--examples/turing_machine/BUILD19
1 files changed, 19 insertions, 0 deletions
diff --git a/examples/turing_machine/BUILD b/examples/turing_machine/BUILD
new file mode 100644
index 0000000..c8b90b4
--- /dev/null
+++ b/examples/turing_machine/BUILD
@@ -0,0 +1,19 @@
+py_binary(
+ name = "turing_machine",
+ srcs = ["turing_machine.py"],
+ deps = [
+ "//:ts_lib",
+ "//:ts_utils",
+ "//runtime",
+ ],
+)
+
+py_test(
+ name = "test_turing_machine",
+ size = "small",
+ srcs = ["test_turing_machine.py"],
+ deps = [
+ ":turing_machine",
+ "@bazel_python//:pytest_helper",
+ ],
+)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback