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",
|
2023-06-04 01:08:11 +00:00
|
|
|
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-05-28 04:03:25 +00:00
|
|
|
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 = [
|
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
|
|
|
)
|