tools

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

BUILD (523B)


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