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",
|
2024-02-06 18:18:33 +00:00
|
|
|
main = "src/proquint/__main__.py",
|
2023-07-08 22:47:12 +00:00
|
|
|
shebang = "#!/usr/bin/env python3",
|
2021-08-12 20:50:09 +00:00
|
|
|
imports = [
|
|
|
|
"src/python",
|
|
|
|
],
|
|
|
|
deps = [
|
|
|
|
":proquint",
|
|
|
|
],
|
|
|
|
)
|