source/projects/yamlschema/BUILD
2021-05-14 11:55:28 -06:00

12 lines
173 B
Python

py_library(
name = "yamlschema",
srcs = [
"yamlschema.py",
],
imports = [
".",
],
deps = [
py_requirement("PyYAML"),
]
)