source/projects/archiver/BUILD.bazel
Reid 'arrdem' McKenzie 45da5b603d BUILD.bazel
2024-02-06 10:01:19 -07:00

20 lines
338 B
Text

zapp_binary(
name = "hash_copy",
main = "hash_copy.py",
srcs = [
"util.py"
],
)
zapp_binary(
name = "org_photos",
main = "org_photos.py",
srcs = [
"util.py"
],
deps = [
py_requirement("ExifRead"),
py_requirement("yaspin"),
],
shebang = "/usr/bin/env python3"
)