25 lines
614 B
TOML
25 lines
614 B
TOML
[project]
|
|
name = "gemini-worker"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "harold",email = "tihon414@gmail.com"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.11, <4.0"
|
|
dependencies = [
|
|
"faststream[cli] (>=0.5.37,<0.6.0)",
|
|
"aio-pika (>=9.5.4,<10.0.0)",
|
|
"google-genai (>=1.0.0,<2.0.0)",
|
|
"google-generativeai (>=0.8.4,<0.9.0)",
|
|
"pydantic-settings (>=2.7.1,<3.0.0)",
|
|
"sqlalchemy (>=2.0.40,<3.0.0)",
|
|
"asyncpg (>=0.30.0,<0.31.0)",
|
|
"psycopg2-binary (>=2.9.10,<3.0.0)"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|