blob: 95f7192ea46dd13c2f9b3a18ef0e12c1fc041962 [file] [log] [blame]
licenses(["notice"])
cc_library(
name = "matplotlib-cpp",
hdrs = [
"matplotlibcpp.h",
],
data = [
"@matplotlib_repo//:matplotlib3",
"@python_repo//:all_files",
],
restricted_to = ["//tools:k8"],
visibility = ["//visibility:public"],
deps = [
"@python_repo//:python3.5_lib",
],
)
cc_binary(
name = "basic_example",
srcs = [
"examples/basic.cpp",
],
restricted_to = ["//tools:k8"],
deps = [
"matplotlib-cpp",
],
)
cc_binary(
name = "animation_example",
srcs = [
"examples/animation.cpp",
],
restricted_to = ["//tools:k8"],
deps = [
"matplotlib-cpp",
],
)