source/projects/tentacles/BUILD.bazel
Reid D McKenzie f995ccd113 Update deps
2025-02-06 01:55:51 -07:00

21 lines
617 B
Text

py_project(
name = "tentacles",
shebang = "/usr/bin/env python3",
zip_safe = False,
main = "src/tentacles/__main__.py",
main_deps = [
"//projects/anosql",
"//projects/anosql-migrations",
"//projects/octorest",
py_requirement("aiosql"),
py_requirement("attrs"),
py_requirement("click"),
py_requirement("flask"),
py_requirement("jinja2"),
py_requirement("cherrypy"),
py_requirement("legacy-cgi"), # Required by CherryPy on 3.13+
],
lib_data = [
"//projects/tentacles/src/tentacles/static/css",
],
)