10 lines
174 B
Python
10 lines
174 B
Python
py_library(
|
|
name = "gandi",
|
|
src = globs(["src/python/**/*.py"]),
|
|
imports = [
|
|
"src/python"
|
|
],
|
|
deps = [
|
|
py_requirement("requests"),
|
|
]
|
|
)
|