source/projects/proquint/BUILD

18 lines
267 B
Python
Raw Normal View History

2021-08-04 01:28:13 +00:00
py_project(
name = "proquint",
test_deps = [
py_requirement("hypothesis"),
],
2021-08-04 01:04:23 +00:00
)
2021-08-12 20:50:09 +00:00
zapp_binary(
name = "qint",
main = "src/python/proquint/__main__.py",
imports = [
"src/python",
],
deps = [
":proquint",
],
)