summaryrefslogtreecommitdiffstats
path: root/glucometerutils/BUILD
blob: 6b3c2670e79d692a30aa45463d856a36f093c357 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
# -*- 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",
    ]
)