source/projects/tentacles/BUILD.bazel

21 lines
566 B
Python
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,
2023-05-13 22:58:17 +00:00
main = "src/python/tentacles/__main__.py",
main_deps = [
"//projects/anosql",
"//projects/anosql-migrations",
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"),
py_requirement("octorest"),
2023-06-03 16:34:25 +00:00
py_requirement("cherrypy"),
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
)