diff --git a/labm8/py/BUILD b/labm8/py/BUILD index 358134b49..052801cbe 100644 --- a/labm8/py/BUILD +++ b/labm8/py/BUILD @@ -844,6 +844,28 @@ py_test( ], ) +py_library( + name = "pdutil", + srcs = ["pdutil.py"], + visibility = ["//visibility:public"], + deps = [ + ":app", + ":sqlutil", + "//third_party/py/pandas", + ], +) + +py_test( + name = "pdutil_test", + srcs = ["pdutil_test.py"], + deps = [ + ":pdutil", + ":sqlutil", + ":test", + "//third_party/py/sqlalchemy", + ], +) + py_library( name = "ppar", srcs = ["ppar.py"],