2023-05-13 22:58:17 +00:00
|
|
|
py_project(
|
|
|
|
name = "tentacles",
|
2023-06-03 07:24:13 +00:00
|
|
|
shebang = "/usr/bin/env python3.11",
|
|
|
|
zip_safe = False,
|
2023-05-13 22:58:17 +00:00
|
|
|
main = "src/python/tentacles/__main__.py",
|
|
|
|
main_deps = [
|
|
|
|
"//projects/anosql",
|
|
|
|
"//projects/anosql-migrations",
|
2023-06-03 05:07:59 +00:00
|
|
|
"//projects/cherry-shim",
|
2023-06-03 07:24:13 +00:00
|
|
|
py_requirement("attrs"),
|
2023-05-13 22:58:17 +00:00
|
|
|
py_requirement("click"),
|
|
|
|
py_requirement("flask"),
|
|
|
|
py_requirement("jinja2"),
|
2023-05-28 04:03:25 +00:00
|
|
|
py_requirement("octorest"),
|
2023-05-19 06:52:07 +00:00
|
|
|
],
|
2023-06-03 07:24:13 +00:00
|
|
|
lib_data = [
|
2023-05-19 06:52:07 +00:00
|
|
|
"//projects/tentacles/src/python/tentacles/static/css",
|
|
|
|
],
|
2023-05-13 22:58:17 +00:00
|
|
|
)
|