16 lines
226 B
Python
16 lines
226 B
Python
|
py_project(
|
||
|
name = "lib"
|
||
|
)
|
||
|
|
||
|
zapp_binary(
|
||
|
name = "hatctl",
|
||
|
main = "src/python/hatctl/__main__.py",
|
||
|
imports = [
|
||
|
"src/python",
|
||
|
],
|
||
|
deps = [
|
||
|
":lib",
|
||
|
py_requirement("click"),
|
||
|
],
|
||
|
)
|