tools

various tools I have been using throughout the years
Log | Files | Refs | README | LICENSE

BUILD (412B)


      1 load("@rules_python//python:defs.bzl", "py_binary")
      2 load("//bazel:local-deploy.bzl", "local_deploy")
      3 
      4 py_binary(
      5     name = "diggah",
      6     srcs = ["diggah.py"],
      7     main = "diggah.py",
      8     python_version = "PY3",
      9     legacy_create_init = 0,
     10     deps = [
     11         "@tools_pypi//fire",
     12         "@tools_pypi//paramiko",
     13     ],
     14 )
     15 
     16 local_deploy(
     17     name = "deploy",
     18     srcs = [":diggah"],
     19     copy_runfiles = True,
     20 )