mirror of
https://github.com/google/benchmark.git
synced 2024-11-26 16:31:54 +00:00
348aa2c964
* packages versions updated to be in sync with modern python versions
20 lines
327 B
Python
20 lines
327 B
Python
load("@py_deps//:requirements.bzl", "requirement")
|
|
|
|
py_library(
|
|
name = "gbench",
|
|
srcs = glob(["gbench/*.py"]),
|
|
deps = [
|
|
requirement("numpy"),
|
|
requirement("scipy"),
|
|
],
|
|
)
|
|
|
|
py_binary(
|
|
name = "compare",
|
|
srcs = ["compare.py"],
|
|
python_version = "PY2",
|
|
deps = [
|
|
":gbench",
|
|
],
|
|
)
|