mirror of
https://github.com/nexus-stc/hyperboria
synced 2024-12-13 13:17:48 +01:00
20 lines
469 B
Python
20 lines
469 B
Python
|
load("@pip_modules_external//:requirements.bzl", "requirement")
|
||
|
load("@rules_python//python:defs.bzl", "py_binary")
|
||
|
|
||
|
py_binary(
|
||
|
name = "installer",
|
||
|
srcs = glob([
|
||
|
"**/*.py",
|
||
|
]),
|
||
|
imports = ["."],
|
||
|
main = "main.py",
|
||
|
srcs_version = "PY3",
|
||
|
visibility = ["//visibility:public"],
|
||
|
deps = [
|
||
|
requirement("psycopg2-binary"),
|
||
|
requirement("fire"),
|
||
|
requirement("tantipy"),
|
||
|
requirement("izihawa_utils"),
|
||
|
],
|
||
|
)
|