source/projects/yamlschema/BUILD

13 lines
173 B
Python
Raw Normal View History

2021-05-14 17:55:28 +00:00
py_library(
name = "yamlschema",
srcs = [
"yamlschema.py",
],
imports = [
".",
],
deps = [
py_requirement("PyYAML"),
]
)