Skip to content

Commit 1816c09

Browse files
committed
Bazel BUILD for python implementation
1 parent 6125452 commit 1816c09

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

python/BUILD

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
py_library(
2+
name = 'openlocationcode',
3+
srcs = ['openlocationcode.py'],
4+
)
5+
6+
py_test(
7+
name = 'openlocationcode_test',
8+
srcs = ['openlocationcode_test.py'],
9+
size = 'small',
10+
deps = [':openlocationcode'],
11+
data = ['//test_data:test_data'],
12+
)

0 commit comments

Comments
 (0)