Break tools out into their own dirs

This commit is contained in:
Reid 'arrdem' McKenzie 2021-08-29 22:13:59 -06:00
commit 3b9e4076a5
15 changed files with 59 additions and 66 deletions
tools/unify

7
tools/unify/BUILD Normal file
View file

@ -0,0 +1,7 @@
py_binary(
name = "unify",
main = "__main__.py",
deps = [
py_requirement("unify"),
]
)

12
tools/unify/__main__.py Normal file
View file

@ -0,0 +1,12 @@
#!/usr/bin/env python3
"""
Shim for executing isort.
"""
from unify import main
if __name__ == "__main__":
exit(main())