-
Notifications
You must be signed in to change notification settings - Fork 0
/
BUILD
46 lines (42 loc) · 972 Bytes
/
BUILD
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
load("@rules_python//python:defs.bzl", "py_binary")
load("@scraper_deps//:requirements.bzl", "requirement")
py_binary(
name = "mr_lodge",
srcs = ["scrapper.py"],
args = ["--mr_lodge"],
main = "scrapper.py",
deps = [
"//mr_lodge:mr_lodge_scrapper",
requirement("pandas"),
],
)
py_binary(
name = "cisei_site",
srcs = ["scrapper.py"],
args = ["--cisei"],
main = "scrapper.py",
deps = [
"//cisei:cisei_scrapper",
requirement("pandas"),
],
)
py_binary(
name = "cognomix_site",
srcs = ["scrapper.py"],
args = ["--cognomix"],
main = "scrapper.py",
deps = [
"//cognomix:cognomix_scrapper",
requirement("pandas"),
],
)
py_binary(
name = "currencies_rates",
srcs = ["scrapper.py"],
args = ["--currencies_rates"],
main = "scrapper.py",
deps = [
"//currencies_rates:currency_rates_scrapper",
requirement("pandas"),
],
)