BUILD 1.06 KB
Newer Older
1
2
3
4
package(default_visibility = ["//visibility:public"])

licenses(["notice"])  # Apache 2.0

5
6
7
8
9
10
11
py_library(
    name = "base",
    srcs = [
        "base.py",
    ],
    deps = [
        "//astronet/ops:dataset_ops",
12
        "//tf_util:configdict",
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
    ],
)

py_test(
    name = "base_test",
    srcs = ["base_test.py"],
    data = ["test_data/test-dataset.tfrecord"],
    srcs_version = "PY2AND3",
    deps = [":base"],
)

py_library(
    name = "kepler_light_curves",
    srcs = [
        "kepler_light_curves.py",
    ],
    deps = [
        ":base",
31
        "//tf_util:configdict",
32
33
34
35
36
37
38
39
40
41
42
    ],
)

py_library(
    name = "synthetic_transits",
    srcs = [
        "synthetic_transits.py",
    ],
    deps = [
        ":base",
        ":synthetic_transit_maker",
43
        "//tf_util:configdict",
44
45
46
    ],
)

47
48
49
50
51
52
53
54
55
56
57
58
59
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"],
)