summaryrefslogtreecommitdiff
path: root/BUILD.bazel
diff options
context:
space:
mode:
authorMatthew Sotoudeh <masotoudeh@ucdavis.edu>2020-09-16 13:25:47 -0700
committerGitHub <noreply@github.com>2020-09-16 13:25:47 -0700
commit5d083c8ff8794c598f1e31c24d7f74f36b86cae9 (patch)
tree7dd901089aae430fa7c36bbbae61ec5e973da3bb /BUILD.bazel
parent696252c38a939599cc2f0ea8a05b135120e725d3 (diff)
Add a script for automatically DBLP-ifying references (#5)
Also added documentation for it in the README.
Diffstat (limited to 'BUILD.bazel')
-rw-r--r--BUILD.bazel12
1 files changed, 12 insertions, 0 deletions
diff --git a/BUILD.bazel b/BUILD.bazel
index 58074f4..5d909b4 100644
--- a/BUILD.bazel
+++ b/BUILD.bazel
@@ -5,3 +5,15 @@ exports_files([
"get_arxivable.sh",
"pdfcrop.sh",
])
+
+py_binary(
+ name = "dblpify",
+ srcs = ["dblpify.py"],
+ deps = [":dblp"],
+ visibility = ["//visibility:public"],
+)
+
+py_library(
+ name = "dblp",
+ srcs = ["dblp.py"],
+)
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback