tools

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

BUILD (372B)


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