summaryrefslogblamecommitdiffstats
path: root/glucometerutils/BUILD
blob: 6b3c2670e79d692a30aa45463d856a36f093c357 (plain) (tree)






















                                            
# -*- python -*-

package(
    default_visibility = [
        "//glucometerutils:__subpackages__",
        "//test:__pkg__",
    ]
)

py_library(
    name = "exceptions",
    srcs = ["exceptions.py"],
    srcs_version = "PY3",
)

py_library(
    name = "common",
    srcs = ["common.py"],
    srcs_version = "PY3",
    deps = [
        ":exceptions",
    ]
)