source/projects/gandi/BUILD

13 lines
239 B
Python
Raw Normal View History

2021-05-09 01:33:37 +00:00
package(default_visibility = ["//visibility:public"])
2021-05-08 18:36:29 +00:00
py_library(
name = "gandi",
2021-05-09 04:35:04 +00:00
srcs = glob(["src/python/gandi/client.py"]),
2021-05-08 18:36:29 +00:00
imports = [
2021-08-12 20:28:57 +00:00
"src/python",
2021-05-08 18:36:29 +00:00
],
deps = [
py_requirement("requests"),
2021-05-09 01:33:37 +00:00
],
2021-05-08 18:36:29 +00:00
)