source/projects/tentacles/BUILD.bazel

22 lines
617 B
Text
Raw Normal View History

2023-05-13 22:58:17 +00:00
py_project(
name = "tentacles",
2023-07-08 19:14:04 +00:00
shebang = "/usr/bin/env python3",
2023-06-03 07:24:13 +00:00
zip_safe = False,
2024-02-06 18:18:33 +00:00
main = "src/tentacles/__main__.py",
2023-05-13 22:58:17 +00:00
main_deps = [
"//projects/anosql",
"//projects/anosql-migrations",
2025-02-06 08:55:51 +00:00
"//projects/octorest",
py_requirement("aiosql"),
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-06-03 16:34:25 +00:00
py_requirement("cherrypy"),
2025-02-06 08:55:51 +00:00
py_requirement("legacy-cgi"), # Required by CherryPy on 3.13+
2023-05-19 06:52:07 +00:00
],
2023-06-03 07:24:13 +00:00
lib_data = [
2024-02-06 18:18:33 +00:00
"//projects/tentacles/src/tentacles/static/css",
2023-05-19 06:52:07 +00:00
],
2023-05-13 22:58:17 +00:00
)