diff --git a/projects/yamlschema/BUILD b/projects/yamlschema/BUILD index ce0e500..e258dac 100644 --- a/projects/yamlschema/BUILD +++ b/projects/yamlschema/BUILD @@ -1,19 +1,7 @@ -py_library( +py_project( name="yamlschema", - srcs=glob(["src/python/**/*.py"]), - imports=[ - "src/python", - ], - deps=[ + lib_deps=[ py_requirement("PyYAML"), ], -) - -py_pytest( - name="test_yamlschema", - srcs=glob(["test/python/test_*.py"]), - data=glob(["*.json", "*.yaml"]), - deps=[ - ":yamlschema", - ], + test_data=glob(["*.json", "*.yaml"]), ) diff --git a/projects/yamlschema/README.md b/projects/yamlschema/README.md index 31e9f76..145b1dd 100644 --- a/projects/yamlschema/README.md +++ b/projects/yamlschema/README.md @@ -44,3 +44,9 @@ As conveniences, yamlschema gives you a couple entrypoints that handle construct ) ] ``` + +## LICENSE + +Copyright Reid 'arrdem' McKenzie August 2021. + +Published under the terms of the MIT license.