BUILD 375 Bytes
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # Apache 2.0

py_library(
    name = "synthetic_transit_maker",
    srcs = [
        "synthetic_transit_maker.py",
    ],
)

py_test(
    name = "synthetic_transit_maker_test",
    srcs = ["synthetic_transit_maker_test.py"],
    srcs_version = "PY2AND3",
    deps = [":synthetic_transit_maker"],
)