summaryrefslogtreecommitdiffstats
path: root/glucometerutils/BUILD
diff options
context:
space:
mode:
Diffstat (limited to 'glucometerutils/BUILD')
-rw-r--r--glucometerutils/BUILD23
1 files changed, 23 insertions, 0 deletions
diff --git a/glucometerutils/BUILD b/glucometerutils/BUILD
new file mode 100644
index 0000000..6b3c267
--- /dev/null
+++ b/glucometerutils/BUILD
@@ -0,0 +1,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",
+ ]
+)