Get it all working

This commit is contained in:
Reid 'arrdem' McKenzie 2021-05-08 19:33:37 -06:00
commit b7e35bcc2a
9 changed files with 43 additions and 23 deletions
projects/gandi

View file

@ -1,10 +1,12 @@
package(default_visibility = ["//visibility:public"])
py_library(
name = "gandi",
src = globs(["src/python/**/*.py"]),
srcs = glob(["src/python/gandi/client.py"], []),
imports = [
"src/python"
],
deps = [
py_requirement("requests"),
]
],
)

View file

@ -1,7 +0,0 @@
python_library(
name="gandi",
sources=globs("*.py"),
dependencies=[
"//3rdparty/python:requests",
]
)