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