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