diff --git a/projects/proquint/BUILD b/projects/proquint/BUILD index f3fceeb..6df8403 100644 --- a/projects/proquint/BUILD +++ b/projects/proquint/BUILD @@ -1,16 +1,6 @@ -py_library( - name = "lib", - srcs = glob(["src/python/**/*.py"]), - imports = [ - "src/python", - ], -) - -py_pytest( - name = "test", - srcs = glob(["test/python/**/*.py"]), - deps = [ - ":lib", - py_requirement("hypothesis"), - ], +py_project( + name = "proquint", + test_deps = [ + py_requirement("hypothesis"), + ], )