fix
This commit is contained in:
parent
4f7249e476
commit
514e90d55d
17 changed files with 21 additions and 21 deletions
|
@ -10,6 +10,6 @@ py_project(
|
||||||
py_requirement("pyyaml"),
|
py_requirement("pyyaml"),
|
||||||
py_requirement("retry"),
|
py_requirement("retry"),
|
||||||
],
|
],
|
||||||
main = "src/python/relay/__main__.py",
|
main = "src/relay/__main__.py",
|
||||||
shebang = "/usr/bin/env python3"
|
shebang = "/usr/bin/env python3"
|
||||||
)
|
)
|
||||||
|
|
|
@ -4,7 +4,7 @@ py_project(
|
||||||
|
|
||||||
zapp_binary(
|
zapp_binary(
|
||||||
name = "aloe",
|
name = "aloe",
|
||||||
main = "src/python/aloe/__main__.py",
|
main = "src/aloe/__main__.py",
|
||||||
deps = [
|
deps = [
|
||||||
":lib",
|
":lib",
|
||||||
py_requirement("icmplib"),
|
py_requirement("icmplib"),
|
||||||
|
|
|
@ -2,7 +2,7 @@ package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
name = "lib",
|
name = "lib",
|
||||||
srcs = glob(["src/python/**/*.py"]),
|
srcs = glob(["src/**/*.py"]),
|
||||||
imports = ["src/python"],
|
imports = ["src/python"],
|
||||||
deps = [
|
deps = [
|
||||||
py_requirement("pyrsistent"),
|
py_requirement("pyrsistent"),
|
||||||
|
|
|
@ -7,7 +7,7 @@ py_project(
|
||||||
|
|
||||||
zapp_binary(
|
zapp_binary(
|
||||||
name = "clusterctrl",
|
name = "clusterctrl",
|
||||||
main = "src/python/clusterctrl/__main__.py",
|
main = "src/clusterctrl/__main__.py",
|
||||||
imports = [
|
imports = [
|
||||||
"src/python",
|
"src/python",
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
zapp_binary(
|
zapp_binary(
|
||||||
name = "datalog-shell",
|
name = "datalog-shell",
|
||||||
main = "src/python/datalog/shell/__main__.py",
|
main = "src/datalog/shell/__main__.py",
|
||||||
imports = [
|
imports = [
|
||||||
"src/python"
|
"src/python"
|
||||||
],
|
],
|
||||||
|
|
|
@ -2,7 +2,7 @@ package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
name = "lib",
|
name = "lib",
|
||||||
srcs = glob(["src/python/flowmetal/*.py"]),
|
srcs = glob(["src/flowmetal/*.py"]),
|
||||||
imports = [
|
imports = [
|
||||||
"src/python"
|
"src/python"
|
||||||
],
|
],
|
||||||
|
@ -17,5 +17,5 @@ py_binary(
|
||||||
py_requirement("click"),
|
py_requirement("click"),
|
||||||
py_requirement("redis"),
|
py_requirement("redis"),
|
||||||
],
|
],
|
||||||
main = "src/python/flowmetal/__main__.py",
|
main = "src/flowmetal/__main__.py",
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,7 +2,7 @@ package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
name = "gandi",
|
name = "gandi",
|
||||||
srcs = glob(["src/python/gandi/client.py"]),
|
srcs = glob(["src/gandi/client.py"]),
|
||||||
imports = [
|
imports = [
|
||||||
"src/python",
|
"src/python",
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
py_project(
|
py_project(
|
||||||
name = "gh-unnotifier",
|
name = "gh-unnotifier",
|
||||||
main = "src/python/ghunnotif/__main__.py",
|
main = "src/ghunnotif/__main__.py",
|
||||||
main_deps = [
|
main_deps = [
|
||||||
py_requirement("click"),
|
py_requirement("click"),
|
||||||
py_requirement("requests"),
|
py_requirement("requests"),
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
zapp_binary(
|
zapp_binary(
|
||||||
name = "jobqd",
|
name = "jobqd",
|
||||||
main = "src/python/jobqd/__main__.py",
|
main = "src/jobqd/__main__.py",
|
||||||
imports = [
|
imports = [
|
||||||
"src/python",
|
"src/python",
|
||||||
],
|
],
|
||||||
|
@ -13,7 +13,7 @@ zapp_binary(
|
||||||
py_library(
|
py_library(
|
||||||
name = "client",
|
name = "client",
|
||||||
srcs = [
|
srcs = [
|
||||||
"src/python/jobqd/rest/api.py",
|
"src/jobqd/rest/api.py",
|
||||||
],
|
],
|
||||||
imports = [
|
imports = [
|
||||||
"src/python",
|
"src/python",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
py_project(
|
py_project(
|
||||||
name = "lilith",
|
name = "lilith",
|
||||||
main = "src/python/lilith/__main__.py",
|
main = "src/lilith/__main__.py",
|
||||||
lib_deps = [
|
lib_deps = [
|
||||||
py_requirement("lark"),
|
py_requirement("lark"),
|
||||||
py_requirement("pyyaml"),
|
py_requirement("pyyaml"),
|
||||||
|
|
|
@ -7,7 +7,7 @@ py_project(
|
||||||
|
|
||||||
zapp_binary(
|
zapp_binary(
|
||||||
name = "qint",
|
name = "qint",
|
||||||
main = "src/python/proquint/__main__.py",
|
main = "src/proquint/__main__.py",
|
||||||
shebang = "#!/usr/bin/env python3",
|
shebang = "#!/usr/bin/env python3",
|
||||||
imports = [
|
imports = [
|
||||||
"src/python",
|
"src/python",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
py_project(
|
py_project(
|
||||||
name = "updater",
|
name = "updater",
|
||||||
main = "src/python/updater/__main__.py",
|
main = "src/updater/__main__.py",
|
||||||
shebang = "/usr/bin/env python3",
|
shebang = "/usr/bin/env python3",
|
||||||
lib_deps = [
|
lib_deps = [
|
||||||
"//projects/gandi",
|
"//projects/gandi",
|
||||||
|
|
|
@ -2,7 +2,7 @@ package(default_visibility = ["//visibility:public"])
|
||||||
|
|
||||||
py_library(
|
py_library(
|
||||||
name = "lib",
|
name = "lib",
|
||||||
srcs = glob(["src/python/**/*.py"]),
|
srcs = glob(["src/**/*.py"]),
|
||||||
imports = ["src/python"],
|
imports = ["src/python"],
|
||||||
deps = [
|
deps = [
|
||||||
]
|
]
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
zapp_binary(
|
zapp_binary(
|
||||||
name = "reqman",
|
name = "reqman",
|
||||||
main = "src/python/reqman/__main__.py",
|
main = "src/reqman/__main__.py",
|
||||||
imports = [
|
imports = [
|
||||||
"src/python",
|
"src/python",
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
py_project(
|
py_project(
|
||||||
name = "shoggoth",
|
name = "shoggoth",
|
||||||
main = "src/python/shoggoth/repl/__main__.py",
|
main = "src/shoggoth/repl/__main__.py",
|
||||||
main_deps = [
|
main_deps = [
|
||||||
py_requirement("prompt_toolkit"),
|
py_requirement("prompt_toolkit"),
|
||||||
py_requirement("yaspin"),
|
py_requirement("yaspin"),
|
||||||
|
@ -17,7 +17,7 @@ py_project(
|
||||||
|
|
||||||
zapp_binary(
|
zapp_binary(
|
||||||
name ="ichor",
|
name ="ichor",
|
||||||
main = "src/python/ichor/__main__.py",
|
main = "src/ichor/__main__.py",
|
||||||
shebang ="/usr/bin/env python3",
|
shebang ="/usr/bin/env python3",
|
||||||
deps = [
|
deps = [
|
||||||
":lib",
|
":lib",
|
||||||
|
|
|
@ -7,5 +7,5 @@ py_project(
|
||||||
main_deps = [
|
main_deps = [
|
||||||
py_requirement("click"),
|
py_requirement("click"),
|
||||||
],
|
],
|
||||||
main = "src/python/smith/__main__.py",
|
main = "src/smith/__main__.py",
|
||||||
)
|
)
|
||||||
|
|
|
@ -2,7 +2,7 @@ py_project(
|
||||||
name = "tentacles",
|
name = "tentacles",
|
||||||
shebang = "/usr/bin/env python3",
|
shebang = "/usr/bin/env python3",
|
||||||
zip_safe = False,
|
zip_safe = False,
|
||||||
main = "src/python/tentacles/__main__.py",
|
main = "src/tentacles/__main__.py",
|
||||||
main_deps = [
|
main_deps = [
|
||||||
"//projects/anosql",
|
"//projects/anosql",
|
||||||
"//projects/anosql-migrations",
|
"//projects/anosql-migrations",
|
||||||
|
@ -15,6 +15,6 @@ py_project(
|
||||||
py_requirement("cherrypy"),
|
py_requirement("cherrypy"),
|
||||||
],
|
],
|
||||||
lib_data = [
|
lib_data = [
|
||||||
"//projects/tentacles/src/python/tentacles/static/css",
|
"//projects/tentacles/src/tentacles/static/css",
|
||||||
],
|
],
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue